CentoS7にPostgreSQL 10をインストールするメモ
1.postgresqlのインストール
#sudo yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm
#sudo yum install postgresql10-contrib postgresql10-server
2.DBの初期化
# sudo PGSETUP_INITDB_OPTIONS="–encoding=UTF-8 –no-locale" /usr/pgsql-10/bin/postgresql-10-setup initdb
3.DBの起動
#sudo systemctl start postgresql-10
4.自動起動の設定
#sudo systemctl enable postgresql-10.service
5.postgresqlの確認
#sudo -i -u postgres psql -l
6.postgresqlにログイン
#su – postgres
psql