我的节点js服务器在我的本地机器上运行良好。在服务器上进行设置时,会抛出错误:拒绝连接。
以下是详细信息:
pg_config = "postgres://postgres@localhost:5433/crda_test";
or pg_config = "postgres://postgres@::1:5433/crda_test";
or pg_config = "postgres://postgres@127.0.0.1:5433/crda_test";
关于postgresql:
Version: 9.6 postgresql
psql -U postgres -h localhost -p 5433 (This works perfectly fine)
psql -U postgres -h ::1 -p 5433 (This works perfectly fine)
psql -U postgres -h 127.0.0.1 -p 5433 (This works perfectly fine)
此命令的输出如下:
sudo lsof -n -u postgres | grep LISTEN(以下给出的输出)
postgres 15072 postgres 3u IPv6 15677592 0t0 TCP [::1]:5433 (LISTEN)
postgres 29773 postgres 3u IPv6 15519790 0t0 TCP [::1]:5435 (LISTEN)
此命令显示端口正在侦听,为什么我无法发出请求。如果有人可以对此有所了解,这对我有很大帮助。 以下是在远程计算机上运行服务器时的错误: enter image description here