postgresql安裝

一、添加RPMsql

yum install https://download.postgresql.org/pub/repos/yum/9.5/redhat/rhel-7-x86_64/pgdg-centos95-9.5-2.noarch.rpm數據庫

二、安裝PostgreSQL 9.5
yum install postgresql95-server postgresql95-contribvim

三、初始化數據庫
/usr/pgsql-9.5/bin/postgresql95-setup initdbcentos

四、設置開機自啓動
systemctl enable postgresql-9.5.service服務器

五、啓動服務
systemctl start postgresql-9.5.serviceide

六、查看版本
psql --versionpost

7.postgresql修改密碼
su - postgres
psql -U postgres
ALTER USER postgres WITH PASSWORD '123456'
\qrest

8.開啓遠程訪問
vim /var/lib/pgsql/9.5/data/postgresql.conf
修改#listen_addresses = 'localhost' 爲 listen_addresses='*'postgresql

9.信任遠程鏈接
vi /var/lib/pgsql/9.5/data/pg_hba.conf
修改以下內容,信任指定服務器鏈接server

IPv4 local connections:

host all all 127.0.0.1/32 ident
host all all 192.168.137.1/32(須要鏈接的服務器IP) trust

10.重啓服務systemctl restart postgresql-9.5.service

相關文章
相關標籤/搜索