- 追加された行はこの色です。
- 削除された行はこの色です。
* PostgreSQL 9.1 インストール [#ta36c2bc]
** postgresユーザの作成 [#u5a8ce8f]
mkdir -p /usr/local/pgsql/data
groupadd postgres
useradd -g postgres -d /usr/local/pgsql postgres
** コンパイル・インストール [#k20bbb87]
wget ftp://ftp2.jp.postgresql.org/pub/postgresql/source/v9.1.3/postgresql-9.1.3.tar.gz
tar zxvf postgresql-9.1.3.tar.gz
cd postgresql-9.1.3/
./configure --prefix=/usr/local/pgsql
make
checkinstall --fstrans=no
rpm -ivh postgresql.rpm
** 設定 [#h8e5395e]
*** ライブラリパス [#n8438ea8]
cat > /etc/ld.so.conf.d/postgresql.conf
/usr/local/postgresql/lib
*** データベース初期化・起動 [#z160e9fb]
su - postgres
/usr/local/postgresql/bin/initdb -D /usr/local/postgresql/data --no-locale