postgresql mogo数据库允许其它主机访问
Posted dy blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql mogo数据库允许其它主机访问相关的知识,希望对你有一定的参考价值。
postgres:
/etc/postgresql/9.5/main/
environment pg_ctl.conf pg_hba.conf pg_ident.conf postgresql.conf start.conf
postgresql.conf 修改:
listen_addresses = ‘*‘ #listen_addresses = ‘localhost‘ # what IP address(es) to listen on; # comma-separated list of addresses; # defaults to ‘localhost‘; use ‘*‘ for all # (change requires restart)
pg_hba.conf修改:
# Database administrative login by Unix domain socket local all postgres peer # TYPE DATABASE USER ADDRESS METHOD # "local" is for Unix domain socket connections only local all all peer # IPv4 local connections: host all all 127.0.0.1/32 md5 # IPv6 local connections: host all all ::1/128 md5 # dy host all all 172.18.1.80/32 md5 # acm host all all 172.22.27.0/8 md5
mongo:
修改/etc/mongod.conf
bindIp: [127.0.0.1,192.168.1.2,192.168.1.3,192.168.1.4,192.168.1.5]
以上是关于postgresql mogo数据库允许其它主机访问的主要内容,如果未能解决你的问题,请参考以下文章