標籤:
1. 安裝PostgreSQL源
# 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
驗證是否安裝成功
# rpm -aq| grep postgres
執行結果如下
postgresql94-libs-9.4.1-1PGDG.rhel7.x86_64postgresql94-server-9.4.1-1PGDG.rhel7.x86_64postgresql94-9.4.1-1PGDG.rhel7.x86_64postgresql94-contrib-9.4.1-1PGDG.rhel7.x86_64
2. 初始化資料庫
# service postgresql-9.4 initdb
3. 啟動服務並設定為開機啟動
# service postgresql-9.4 start
# chkconfig postgresql-9.4 --level 35 on
4. 開放防火牆連接埠
vi /etc/sysconfig/iptables
按下I進入輸入模式,在檔案中加入一下語句
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5432 -j ACCEPT-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
輸入完成後按ESC退出編輯模式,輸入:wq退出VI編輯介面。
重啟防火牆服務
# service iptables restart
5. 訪問PostgreSQL
# su - postgres
-bash-4.2$
-bash-4.2$ psql
postgres=#
設定postgres使用者密碼
postgres=# \password postgres
密碼採用預設 postgres
CentOS安裝postgresql 9.4