创建database以后,进入data文件夹(也可以是用户自定义的那个文件夹)
修改两个文件:postgresql.conf 和 pg_hba.conf
1)
postgresql.conf 中找到#listen_addresses = 'localhost'
取消注释,并把localhost修改为*
也就是listen_addresses = '*'
image.png
2)
pg_hba.conf 中 找到# IPv4 local connections,添加一行:
host all all 0.0.0.0/0 trust
之后就可以在计算节点正常访问
比如我开启了fat01节点的服务:
ssh fat01
pg_ctl -D /my_path/postgres_database -l logfile start
回到mu01节点可以正常访问:
psql -U myself -h fat01 -d postgres
网友评论