数据库
首页 > 数据库> > 使用navicat15连接华为云openguass数据库

使用navicat15连接华为云openguass数据库

作者:互联网

启动华为云服务器,进入root根目录

修改postgresql.conf文件

取消password_encryption_type注释并将等号后改为0。

cd /gaussdb/data/db1
vi postgresql.conf
## 取消password_encryption_type注释并将等号后改为0

修改前:
在这里插入图片描述
修改后:
在这里插入图片描述

修改pg_hba.conf文件

vi pg_hba.conf
##增加一行内容

修改前:
在这里插入图片描述
修改后:
在这里插入图片描述

运行配置

gs_ctl  reload -D /gaussdb/data/db1

在这里插入图片描述

新注册用户

更改配置后需要重新注册sysadmin权限用户,否则navicat15连接时会报错。用户newmanager,密码:gaussdb@666。

gsql -d postgres -p 26000 -r
create user newmanager with sysadmin identified by 'gaussdb@666';

使用navicat15连接数据库

我的华为云服务器公网ip为139.9.113.197。
在这里插入图片描述

标签:openguass,navicat15,vi,gaussdb,修改,华为,conf
来源: https://blog.csdn.net/qq_49588762/article/details/116381740