PostgreSQL 11.1 インストール

PostgreSQL 11.1が公開されたのでインストールする。

cd /usr/local/src
/opt/curl/bin/curl -L https://ftp.postgresql.org/pub/source/v11.1/postgresql-11.1.tar.gz -o postgresql-11.1.tar.gz
tar zxvf postgresql-11.1.tar.gz
cd postgresql-11.1

export CFLAGS="-I/opt/openssl-1.1.1/include" LIBS="-L/opt/openssl-1.1.1/lib" LDFLAGS="-L/opt/openssl-1.1.1/lib" PKG_CONFIG="/opt/openssl-1.1.1/lib/pkgconfig" LD_LIBRARY_PATH="/opt/openssl-1.1.1/lib"
./configure --prefix=/opt/pgsql-11 --with-openssl
make

/etc/rc.d/init.d/postgresql stop
make install
/etc/rc.d/init.d/postgresql start

完了