PHPでPostgreSQLを利用する場合の設定方法です。
LAMP環境が構築されている前提です。
パッケージのインストール
# yum -y install php53-pgsql postgresql postgresql-server postgresql-libsDB初期化と起動
# su - postgres$ initdb
$ pg_ctl start
$ exit
# chkconfig postgresql on
Apacheの再起動
# /etc/rc.d/init.d/httpd restart他のサーバからの移行
■移行元サーバでDBをバックアップ# pg_dump -D -U [ユーザ名] [DB名] > db.dump
■移行先サーバでDBとユーザを作成
# su - postgres
$ createdb -E [文字コード] [DB名]
CREATE DATABASE
$ createuser -a -U postgres -P [ユーザ名]
Enter password for new role:
Enter it again:
CREATE ROLE
■移行先サーバでDBをリストア
$ psql -d [DB名] -f db.dump