gpt4 book ai didi

postgresql - 使用 Docker 启动 Web 应用程序,无法连接到 Postgresql 数据库?

转载 作者:行者123 更新时间:2023-11-29 11:24:08 25 4
gpt4 key购买 nike

尝试使用 Tomcat 的 PersistentManager 将 session 数据写入本地计算机上运行的 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 : 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运行在虚拟机中,因此我得到的本地信息可能不是全部。阅读在线可用信息,似乎我可能需要某种桥接网络。
但是,我承认我是这方面的新手,我不确定如何设置它。

最佳答案

为什么我无法连接到 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. 如果您想在配置 xml 中硬编码“localhost:5432”,最简单的方法是使用选项“--net=host”创建容器:

$ sudo docker run --net=host -it ...

解决方案 2. 更改容器内 docker 主机 ip 的 localhost

  • 获取你的docker主机ip:
    $ sudo docker inspect -f '{{ .NetworkSettings.Gateway }}' 
    192.168.5.1
  • 输入您的容器:
    $ sudo docker exec -it [container] /bin/bash
  • 编辑文件 /etc/hosts 将本地主机指向 docker 主机 ip:
    $ sudo vim /etc/hosts
    192.168.5.1 localhost

解决方案 3. 修改您的数据库配置文件以使用别名而不是 localhost:

connectionURL="jdbc:postgresql://DB_ALIAS/admin?stringtype=unspecified"
然后将 DB_ALIAS 添加到容器的主机中:
$ sudo docker run --add-host DB_ALIAS:192.168.5.1 -it [image] ...

关于postgresql - 使用 Docker 启动 Web 应用程序,无法连接到 Postgresql 数据库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37482716/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com