1. 程式人生 > >PostgreSQL10.5在centos7.5上安裝

PostgreSQL10.5在centos7.5上安裝

PostgreSQL10.5在centos7.5上安裝


下面介紹用yum在CentOS 7.5安裝PostgreSQL10.5。

下載源

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

安裝伺服器軟體包:

yum install postgresql10-server

安裝客戶端軟體包:

yum install postgresql10

可選地初始化資料庫並啟用自動啟動:

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

systemctl enable postgresql-10

systemctl start postgresql-10