PostgreSQLを使う必要があって手順を調べていたのでメモしておく。
インストール
yumでインストールできる。手順はpostgresqlのWikiに書かれている。
YUM Installation - PostgreSQL wiki
1. /etc/yum.repos.d/CentOS-Base.repoの [base] と [updates] のセクションにexcludeを追記
exclude=postgresql*
2. pgdgをインストールする
sudo yum localinstall http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-centos94-9.4-1.noarch.rpm
3. postgresql9.4をインストールする
sudo yum install postgresql94-server
サービスを起動
sudo service postgresql-9.4 start