1、准备工作
Linux、Centos7、PostgreSql14
2、安装
a> 进入PostgreSql下载官网(PostgreSql),选装指定的版本
编辑
b> 依次执行网页中的命令
编辑
3、设置允许远程连接
a> 进入data目录
[root@localhost ~]# cd /var/lib/pgsql/14/data
b> 修改postgresql.conf文件
[root@localhost data]# vim postgresql.conf
isten_addresses节点进行修改,修改前内容
编辑
把listen_addresses前面的#去掉,然后将localhost修改为*,修改后的内容如下:
编辑
c> 修改pg_hba.conf文件
[root@localhost data]# vim pg_hba.conf
这里对IPv4内容进行修改,修改前文件内容:
编辑
修改为文件内容:
编辑
d> 重启
[root@localhost data]# systemctl restart postgresql-14
4、添加初始密码
a> 进入数据库
[root@localhost data]# sudo -u postgres
psql psql (14.7) Type "help" for help.
postgres=#
b> 修改密码
postgres=# alter user postgres with password 'postgres';
c> 退出
postgres=# \q