CentOS7安装PostgreSQL,yum方式

官方安装指导:https://www.postgresql.org/download/linux/redhat/

安装过程:

1.安装pg官方源:

yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm

2.可查看pg源内容:

yum list | grep postgresql


3.安装程序

yum install postgresql10-contrib postgresql10-server -y

安装后,主目录:/usr/pgsql-10,数据目录:/var/lib/pgsql/10/data

4.初始化数据库

/usr/pgsql-10/bin/postgresql-10-setup initdb 

5.创建和启动服务

systemctl enable postgresql-10

systemctl start postgresql-10

你可能感兴趣的:(CentOS7安装PostgreSQL,yum方式)