CentOS7にPostgresql9.6.2をインストールする
1.依存パッケージのインストール
#yum install gcc readline-devel zlib-devel
2.postgresqlのインストール
#cd /usr/local/src/
#tar zxvf postgresql-9.6.2.tar.gz
#cd postgresql-9.6.2/
postgresqlコンパイル
#./configure –prefix=/opt/postgresql/9.6.2
#make
#make install
3.ユーザーの追加
#groupadd postgres
#useradd -g postgres postgres
#passwd postgres
#su postgres
初期化
#/opt/postgresql/9.6.2/bin/initdb –no-locale -D /home/postgres/data