安裝 postgresql
同步至 http://blog.junk.tw/?p=71
sudo yum install postgresql postgresql-server \
postgresql-libs
service postgresql initdb
正在初始化資料庫: [ 確定 ]
service postgresql start
正在啟動 postgresql 服務: [ 確定 ]
su postgres
psql
--給postgres密碼
ALTER USER postgres with password '給postgres密碼' ;
--新增另一個超級使用者
CREATE USER junk with password '給junk密碼' SUPERUSER ;
CREATE DATABASE junk ;
SELECT * From pg_user;
之後我們還得修改驗證模式
sudo vim /var/lib/pgsql/data/pg_hba.conf
#詳細可以參考手冊
#http://www.postgresql.org/docs/8.1/interactive/client-authentication.html
# "local" is for Unix domain socket connections only
local all all md5
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 ident
sudo /etc/init.d/postgresql restart
psql -Ujunk
同步至 http://blog.junk.tw/?p=71