https://www.postgresql.org/download/linux/redhat/
yum install https://download.postgresql.org/pub/repos/yum/11/redhat/rhel-7-x86_64/pgdg-centos11-11-2.noarch.rpm
yum install postgresql11-server postgresql11-contrib
啟動
/usr/pgsql-11/bin/postgresql-11-setup initdb # 資料庫安裝目錄: /var/lib/pgsql/11/data/
systemctl start postgresql-11
客戶端連線
使用上面方式啟動的 postgres, 只監聽127.0.0.1:5432, 要通過 psql 連線資料庫可以通過如下方式
su - postgres
psql
幾個重要檔案
/var/lib/pgsql/11/data/postgresql.conf # 系統全域性配置檔案
/var/lib/pgsql/11/data/postgresql.auto.conf # 實時通過 alter system 修改的系統引數會寫入這個檔案, 優先順序高於上面檔案,不要手動修改這個檔案
/var/lib/pgsql/11/data/pg_hba.conf
create role xiaoming with encrypted password '123456';
create database mydb with owner = xiaoming template=template0 encoding='UTF8';
grant all on database mydb to xiaoming with grant option;
alter role xiaoming with login;
#新增登入許可,編輯 pg_hba.conf
host mydb xiaoming 0.0.0.0/0 md5
#重啟 postgresql
systemctl restart postgresql-11.service
# 登入
psql -h ip -p 5432 mydb xiaoming