我在CentOS上安裝postgresql9.4,本身寫一下過程。內核版本3.10.0-123.el7.x86_64。默認安裝的事9.2,我在網上搜了一下,有最新9.4的流程,就按這個來了。sql
首先採用yum安裝
shell
#yum install http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-1.noarch.rpm #yum install postgresql94-server postgresql94-contrib
而後添加服務數據庫
#systemctl enable postgresql-9.4.service
而後初始化數據庫基本數據post
#/usr/pgsql-9.4/bin/postgresql94-setup initdb
啓動數據庫
postgresql
#systemctl start postgresql-9.4.service
修改配置文件/var/lib/pgsql/9.4/data/postgresql.conf,容許遠程訪問code
listen_addresses ='*'
修改配置文件/var/lib/pgsql/9.4/data/pg_hba.confserver
# IPv4 local connections: host all all 127.0.0.1/32 trust host all all 192.168.1.1/32 trust # IPv6 local connections: host all all ::1/128 trust
而後修改用戶密碼it
sudo passwd postgres
修改數據庫密碼io
su postgres psql -U postgres ALTER USER postgres WITH PASSWORD 'P0stgres' \q
這些作完,基本的數據庫安裝就OK了。
class