[转帖]Data studio普通用户采用非SSL的方式连接openGauss

data,studio,普通用户,采用,ssl,方式,连接,opengauss · 浏览次数 : 0

小编点评

**postgresql.conf** ``` ssl_disabled ssl = off ssl_ciphers = 'ALL' ``` **pg_hba.conf** ``` # 允许所有来自localhost的连接 gs_guc set -N all -I all -h \"host all all 0.0.0.0/0 sha256\" # 允许所有其他远程访问连接 gs_guc set -N all -I all -h \"host all all 0.0.0.0/0 sha256\" ``` **其他文件** * 修改 Data studio连接设置以访问数据库。 * 在 Data studio 中创建一个新的权限规则,赋予普通用户查询 pg_roles 的权限。

正文

https://cdn.modb.pro/db/43087

 

关闭SSL认证
由于openGauss默认开启SSL认证,且配置认证较为麻烦,个人开发测试并不需要它。因此关闭openGauss的远程用户登录SSL认证模式。
1.找到postgresql.conf

cd /gaussdb/data/openGaussTest1/

2.修改postgresql.conf文件,关闭SSL

disabled 
ssl = off                               # (change requires restart)
#ssl_ciphers = 'ALL'                    # allowed SSL ciphers

3.修改postgresql.conf文件,增加要访问的端口号

gs_guc reload -N feihu -I all -c "listen_addresses='localhost,x.x.x.x(数据库所在服务器IP)'"

4.修改pg_hba.conf文件,增加其他远程访问连接的许可

gs_guc set -N all -I all -h "host all all 0.0.0.0/0 sha256"

5.重启数据库

设置普通用户权限
Data studio在连接openGauss数据库时,会访问数据库的pg_roles系统表。系统用户是有权限访问pg_roles,但普通用户不行。因此若想使普通用户通过Data studio访问数据库,需赋予该用户查询pg_roles的权限。例如

grant select on pg_roles to 用户(角色);

与[转帖]Data studio普通用户采用非SSL的方式连接openGauss相似的内容:

[转帖]Data studio普通用户采用非SSL的方式连接openGauss

https://cdn.modb.pro/db/43087 关闭SSL认证由于openGauss默认开启SSL认证,且配置认证较为麻烦,个人开发测试并不需要它。因此关闭openGauss的远程用户登录SSL认证模式。1.找到postgresql.conf cd /gaussdb/data/openG

[转帖]你怎么看Data studio普通用户采用非SSL的方式连接openGauss?

https://zhuanlan.zhihu.com/p/365144226 关闭SSL认证 由于openGauss默认开启SSL认证,个人开发测试并不需要它。因此关闭openGauss的远程用户登录SSL认证模式。 1.找到postgresql.conf。 cd /gaussdb/data/ope

[转帖]Spring-data-redis操作redis知识总结

https://www.yisu.com/zixun/218120.html 什么是spring-data-redis spring-data-redis是spring-data模块的一部分,专门用来支持在spring管理项目对redis的操作,使用java操作redis最常用的是使用jedis,但

[转帖]LOAD DATA INFILE 导入数据

https://www.jianshu.com/p/bcafd8f3ad8e LOAD DATA INFILE语句用于高速地从一个文本文件中读取行,并写入一个表中。文件名称必须为一个文字字符串。LOAD DATA INFILE 是 SELECT ... INTO OUTFILE 的相对语句。把表的数

[转帖]rsar - Extract data from plain-text sar files

sar -A -t -f /tmp/sa11 >/tmp/sar11 https://github.com/ryran/rsar When dealing with sysstat sar data in a sosreport, it's almost always easier to parse

[转帖]bpf | eXpress Data Path| XDP

https://cloud.tencent.com/developer/article/1984109?from=article.detail.1998962&areaSource=106000.4&traceId=YD2oWP83NY3oL5ojIBmEE Introduction to XDP

[转帖]12.24.2 DECIMAL Data Type Characteristics

https://dev.mysql.com/doc/refman/8.0/en/fixed-point-types.html This section discusses the characteristics of the DECIMAL data type (and its synonyms),

[转帖]ERROR 2068 (HY000): LOAD DATA LOCAL INFILE file request rejected due to restrictions on access.

1.报错信息 ERROR 2068 (HY000): LOAD DATA LOCAL INFILE file request rejected due to restrictions on access. 1 2.解决方法 2.1 方法一 查询是否启动local_infile,查询命令如下: sho

[转帖][笔记] BGP in the Data Center (O'Reilly 2017)

http://arthurchiao.art/blog/bgp-in-data-center-zh/ 关于本文 本文是我在读 BGP in the Data Center ( O’Reilly, 2017)时的读书笔记。原书很短,只有 90 页不到,但理论和实践兼备,是现代 数据中心和 BGP 入门

[转帖]Region Merge Config

TiKV replicates a segment of data in Regions via the Raft state machine. As data writes increase, a Region Split happens when the size of the region o