我有一个数据库服务器(192.168.1.50)运行postgres。我创建了一个名为“testdb”的数据库和一个用户“testuser”,密码为“testuserpw”。
在本地,我可以使用以下命令连接到数据库:
原文链接:https://www.f2er.com/postgresql/193231.html在本地,我可以使用以下命令连接到数据库:
psql -d testdb -U testuser
当我从另一个主机(192.168.1.60)发出命令时:
psql -h 192.168.1.50 -d testdb -U testuser
我有错误:
psql: could not connect to server: Connection refused Is the server running on host "192.168.1.50" and accepting TCP/IP connections on port 5432?
任何想法 ?