CentOS 上安裝設定 PostgreSQL

首先我們先把需要安裝的都快速安裝一下

yum -y install postgresql postgresql-server httpd php php-pgsql

PostgreSQL在啟動前要先進行初始化的動作
service postgresql initdb

編輯PostgreSQL設定檔
/var/lib/pgsql/datapg_hba.conf 的最後面
#local all all ident sameuser
local all all trust
# host all all 127.0.0.1/32 ident sameuser
host all all 127.0.0.1/32 md5
服務啟動
service postgresql start


接下來要來設定Postgre的最高管理者"postgres"(就像MySQL的root一樣)
首先要先變換身分
su postgres
然後進入PostgreSQL指令管理
psql
幫postgres這個帳號建立密碼
alter user postgres with password '123456';
請注意!!PostgreSQL指令管理介面的每個指令最後面一定要加上";"
附帶一提:裝完以後如果要讓php可以連接的話要去把SELINUX關掉~或是如果你會設定SELINUX權限的話是最好的啦

留言