查看下数据库pgsql对应的端口 netstat -a | grep PGSQL
,输出以下内容,端口为5432
root@VM-16-4-ubuntu:/etc/postgresql/10/main# netstat -a | grep PGSQL unix 2 [ ACC ] STREAM LISTENING 159539850 /var/run/postgresql/.s.PGSQL.5432
默认情况下,
postgresql默认不开启远程连接 PostgreSQL 服务器仅仅监听本地网络接口:127.0.0.1。,所以在用数据库管理工具尝试连接时报错
修改配置文件 sudo vim /etc/postgresql/9.5/main/pg_hba.conf
文件添加 host all all 0.0.0.0/0 md5 (md5加密方式 0000允许任何ip地址以任何用户身份连接任何数据)
修改sudo vim /etc/postgresql/9.5/main/postgresql.conf (从localhost变为*) find / -name "postgresql.conf"
修改PostgreSQL数据库默认用户postgres的密码
1 登录PostgreSQL sudo -u postgres psql
2 修改登录PostgreSQL密码 ALTER USER postgres WITH PASSWORD 'postgres';
3 \q
重启postgresql: service postgresql restart 允许外网访问的配置就算生效了。用户名:postgres 密码:postgres
开放防火墙端口。 sudo apt-get install iptables
增加规则 iptables -I INPUT -p tcp --dport 5432 -j ACCEPT
保存规则。iptables-save
检查连接 一般来说现在已经可以正常远程连接了,如果还不行请检查端口是否正常开放。如果你用的是阿里云的主机,需要配置安全组策略以开放端口。pgAdmin datagrip