尝试使用Tomcat的PersistentManager将会话数据写入本地计算机上运行的Postgres数据库时,收到以下错误:
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:连接被拒绝。检查主机名和端口是否正确以及邮局主管正在接受TCP / IP连接
我通过确认了netstat -aln | grep LISTENPostgresql正在运行并且正在正确的端口上侦听:
netstat -aln | grep LISTEN
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,它镜像了我在Pgadmin3中正在运行的服务器的主机和端口。
usr/local/var/postgres
我怀疑问题在于Docker在VM中运行,因此我获得的本地信息可能不是全部。在网上阅读可用信息时,似乎我可能需要某种桥接网络。 但是,我承认我是该领域的新手,并且不确定如何设置它。
为什么我不能连接到本地主机:5432?
猫你的容器 /etc/hosts
/etc/hosts
$ sudo docker exec -it [container] cat /etc/hosts
对于docker网络bridge,默认情况下,localhost内部指向容器本身(Docker默认网桥网络)。然后,您无需5432在容器中进行监听:
bridge
localhost
5432
$ sudo docker exec [container] nc -v -z localhost 5432
解决方案1.如果要在配置xml中对“ localhost:5432”进行硬编码,最简单的方法是使用选项“ –net = host”创建容器:
$ sudo docker run --net=host -it ...
解决方案2. localhost在容器内更改您的Docker主机IP
获取您的 Docker主机IP :
$ sudo docker inspect -f '{{ .NetworkSettings.Gateway }}'
192.168.5.1
输入您的容器:
$ sudo docker exec -it [container] /bin/bash
编辑文件/etc/hosts以将localhost指向 docker host ip :
$ sudo vim /etc/hosts
192.168.5.1 localhost
解决方案3.修改数据库配置文件以使用别名代替localhost:
connectionURL="jdbc:postgresql://DB_ALIAS/admin?stringtype=unspecified"
然后将添加DB_ALIAS到容器的主机:
DB_ALIAS
$ sudo docker run --add-host DB_ALIAS:192.168.5.1 -it [image] ...