redhat 7 xインストール構成postgres 10
1633 ワード
redhat 7.xインストール構成postgresql 10
環境
操作
postgres 10のインストール
参照:https://www.postgresql.org/download/linux/redhat
yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-redhat10-10-2.noarch.rpm
yum install postgresql10
yum install postgresql10-server
/usr/pgsql-10/bin/postgresql-10-setup initdb
systemctl enable postgresql-10
systemctl start postgresql-10
postgresユーザーパスワードの変更
su postgres
psql # psql
ALERT USER 'postgres' WITH PASSWORD 'postgres'; # postgres
\q # psql
exit # postgres
postgres 10接続制限の構成
vim /var/lib/pgsql/10/data/pg_hba.conf
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 trust
まとめ
これでpostgres 10のインストール構成が完了し、ここでメモします.