【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

07-07 1703阅读

登陆pgAdmin4

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

连接数据库

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

填写连接名称

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

填写连接信息

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

错误信息如下

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

解决办法

1.登陆数据库服务器切换到postgres用户

[root@postgre-sql ~]# su - postgres
上一次登录:三 12月 13 18:10:00 CST 2023pts/0 上
[postgres@postgre-sql ~]$ 
2.查看数据库进程
[postgres@postgre-sql ~]$ ps -ef | grep postgre
postgres   1685      1  0 12月13 ?      00:00:00 /opt/postgresql-16.1/bin/postgres -D /data/16.1/data
postgres   1686   1685  0 12月13 ?      00:00:00 postgres: checkpointer 
postgres   1687   1685  0 12月13 ?      00:00:00 postgres: background writer 
postgres   1689   1685  0 12月13 ?      00:00:00 postgres: walwriter 
postgres   1690   1685  0 12月13 ?      00:00:00 postgres: autovacuum launcher 
postgres   1691   1685  0 12月13 ?      00:00:00 postgres: logical replication launcher 
root       4659   4642  0 13:25 pts/0    00:00:00 su - postgres
postgres   4660   4659  0 13:25 pts/0    00:00:00 -bash
postgres   4683   4660  0 13:26 pts/0    00:00:00 ps -ef
postgres   4684   4660  0 13:26 pts/0    00:00:00 grep --color=auto postgre
[postgres@postgre-sql ~]$ 

安装路径为: /opt/postgresql-16.1/

数据库Data路径为:/data/16.1/data

3.到数据库Data路径下修改pg_hba.conf文件

找到# IPv4 local connections:和# IPv6 local connections

在# IPv4 local connections:下方# IPv6 local connections上方加上

host    all             all             0.0.0.0/0              md5

如图

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

保存并退出

4.到数据库Data路径下修改postgresql.conf

找到

#listen_addresses = '127.0.0.1'

修改为

listen_addresses = '*'

找到

#port = 5432 

修改为

port = 5432 

保存并退出

5.重启数据库
[root@postgre-sql ~]# systemctl restart postgresql.service
[root@postgre-sql ~]# 

再次保存

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

数据库已经联机成功了

数据库管理

新建库

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

修改库

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

表管理

新建表

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

修改表

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

新建查询窗口

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

修改界面语言

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

【PostgreSQL】从零开始:(四)使用PgAdmin4连接数据库,及工具使用

VPS购买请点击我

文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。

目录[+]