CentOS7.6にPostgreSQLをインストールするメモ

1.インストール
#yum install postgresql-server

2.DB初期化
#postgresql-setup initdb

3.設定ファイルの編集
#vim /var/lib/pgsql/data/postgresql.conf
追加
listen_addresses = '*’

#vim /var/lib/pgsql/data/pg_hba.conf
追記
local all all trust
host all all 127.0.0.1/32 trust
host all all ::1/128 trust

4.起動
#service postgresql restart

5.DB作成
psql -U postgres -W -c “CREATE DATABASE TESTDB";

Linux

Posted by arkgame