CentOS7.8中yum在线安装postgresql(pg)数据库

1.下载安装包(最新)

yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm

2. 安装postgresql

yum install -y postgresql14-server

3.初始化数据库

cd /usr/pgsql-14/bin
postgresql-14-setup initdb

4.默认启动数据库

systemctl enable postgresql-14

5.启动数据库

systemctl start postgresql-14

6.查看postgresql是否安装成功

ps -ef | grep postgres

7.修改默认用户密码 (最好把postgresql默认系统用户postgres禁用掉)

①.从root用户切换到postgres用户,pg中指定的是postgres用户

 su - postgres

②.进入postgres命令行,初次不需要密码

psql -U postgres

③.修改密码

 ALTER USER postgres WITH PASSWORD 'your password';

④.如果报以下错误,需要将postgres用户授权为超级用户角色,然后在执行上面命令
在这里插入图片描述

alter role postgres superuser;

8.修改配置文件

cd /var/lib/pgsql/14/data/
vim postgresql.conf 
修改
listen_addressses='*' //(监听所有ip)
port = 5432
 vim pg_hba.conf 

增加一行

host   all  all  0.0.0.0/0  md5

注意: 0.0.0.0/0(需要连接的服务器IP)

9.重启pg

systemctl restart postgresql-14

10.测试连接

CentOS7.8中yum在线安装postgresql(pg)数据库_第1张图片
至此就已经完成了安装,对你有帮助记得收藏点赞…

你可能感兴趣的:(postgresql,数据库,java,centos,linux)