尝试使用 Tomcat 的 PersistentManager 将 session 数据写入本地计算机上运行的 Postgres DB 时,收到以下错误:
SEVERE: A SQL exception occurred org.postgresql.util.PSQLException: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
应用程序本身在 docker 容器中运行。为了完整起见,我当前的 context.xml 文件是:
<?xml version='1.0' encoding='utf-8'?>
<Context>
<Manager className="org.apache.catalina.session.PersistentManager"
distributable="true" processExpiresFrequency="6" maxIdleBackup="0" debug="99" >
<Store className="org.apache.catalina.session.JDBCStore"
driverName="org.postgresql.Driver"
connectionURL="jdbc:postgresql://localhost/admin?stringtype=unspecified"
connectionName="admin" connectionPassword="admin"
sessionAppCol="app_name" sessionDataCol="session_data" sessionIdCol="session_id"
sessionLastAccessedCol="last_access" sessionMaxInactiveCol="max_inactive"
sessionTable="tomcat_sessions_tb" sessionValidCol="valid_session" />
</Manager>
</Context>
根据这里的建议:Postgresql : Connection refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections
我通过
netstat -aln | grep LISTEN
确认 Postgresql 正在运行并监听正确的端口:tcp4 0 0 127.0.0.1.5432 *.* LISTEN
tcp6 0 0 ::1.5432 *.* LISTEN
并且我的 postgresql.conf(位于
usr/local/var/postgres
中)具有 listen_addresses = localhost 和 port = 5432,它反射(reflect)了我在 Pgadmin3 中运行的服务器的主机和端口。我怀疑问题是Docker运行在VM中,因此我获得的本地信息可能不是全部。阅读在线可用信息,似乎我可能需要某种桥接网络。
但是,我承认我是这方面的新手,我不确定如何设置。
最佳答案
为什么我无法连接到 localhost:5432?
Cat 你的容器的 /etc/hosts
$ sudo docker exec -it [container] cat /etc/hosts
对于 docker 网络,默认为
bridge
,内部的 localhost
指向容器本身(Docker default bridge network)。那么你的容器中没有
5432
监听:$ sudo docker exec [container] nc -v -z localhost 5432
解决方案 1. 如果您想在 config xml 中硬编码“localhost:5432”,最简单的方法是使用选项“--net=host”创建容器:
$ sudo docker run --net=host -it ...
解决方案2.在容器内更改你的docker主机ip的localhost
$ sudo docker inspect -f '{{ .NetworkSettings.Gateway }}'
192.168.5.1
$ sudo docker exec -it [container] /bin/bash
/etc/hosts
将本地主机指向 docker host ip :$ sudo vim /etc/hosts
192.168.5.1 localhost
解决方案 3. 修改您的数据库配置文件以使用别名而不是
localhost
:connectionURL="jdbc:postgresql://DB_ALIAS/admin?stringtype=unspecified"
然后将 DB_ALIAS
添加到容器的 hosts :$ sudo docker run --add-host DB_ALIAS:192.168.5.1 -it [image] ...
关于postgresql - 使用 Docker 启动 Web 应用程序,无法连接到 Postgresql DB?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37482716/