美文网首页
centos7下postgresql9.6设置允许远程访问

centos7下postgresql9.6设置允许远程访问

作者: 张_扬 | 来源:发表于2017-12-01 19:50 被阅读0次

    1 开启密码验证并监听所有ip的请求

    在postgresql.conf文件中修改

    $ vi /var/lib/pgsql/9.6/data/postgresql.conf
    // #password_encryption = on  
    // 修改为
    //password_encryption = on
    
    //#listen_addresses = 'localhost'
    // ->javascript:void(null)
    //listen_addresses = '*'
    
    1. pg_hba.conf
    $ vi /var/lib/pgsql/9.6/data/pg_hba.conf
    //修改为如下配置
    local   all             all                                     peer
    # IPv4 local connections:
    host    all             all             127.0.0.1/32            md5
    host    all     all     0.0.0.0/0       md5
    # IPv6 local connections:
    host    all             all             ::1/128                 md5
    
    1. 重启服务restart postgres9.6
    $systemctl restart postgresql-9.6
    

    相关文章

      网友评论

          本文标题:centos7下postgresql9.6设置允许远程访问

          本文链接:https://www.haomeiwen.com/subject/lzowbxtx.html