redhat 7 xインストール構成postgres 10

1633 ワード

redhat 7.xインストール構成postgresql 10


環境

  • redhat 7.4
  • rootアカウント実行
  • 操作


    postgres 10のインストール


    参照:https://www.postgresql.org/download/linux/redhat
  • Install the repository RPM:
  • yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-redhat10-10-2.noarch.rpm
    
  • Install the client packages:
  • yum install postgresql10
    
  • Optionally install the server packages:
  • yum install postgresql10-server
    
  • Optionally initialize the database and enable automatic start:
  • /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
    
  • 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のインストール構成が完了し、ここでメモします.