无法从另一个 docker 容器中的 Geoserver 运行 连接到 docker 中的 Postgis 运行
Can't connect to Postgis running in docker from Geoserver running in another docker continer
我为 Geoserver 和 Postgis 使用了 kartoza's docker 图像,并使用提供的 docker-compose.yml 在两个 docker 容器中启动它们:
version: '2.1'
volumes:
geoserver-data:
geo-db-data:
services:
db:
image: kartoza/postgis:12.0
volumes:
- geo-db-data:/var/lib/postgresql
ports:
- "25434:5432"
env_file:
- docker-env/db.env
restart: on-failure
healthcheck:
test: "exit 0"
geoserver:
image: kartoza/geoserver:2.17.0
volumes:
- geoserver-data:/opt/geoserver/data_dir
ports:
- "8600:8080"
restart: on-failure
env_file:
- docker-env/geoserver.env
depends_on:
db:
condition: service_healthy
healthcheck:
test: curl --fail -s http://localhost:8080/ || exit 1
interval: 1m30s
timeout: 10s
retries: 3
引用的 .env 文件是:
db.env
POSTGRES_DB=gis,gwc
POSTGRES_USER=docker
POSTGRES_PASS=docker
ALLOW_IP_RANGE=0.0.0.0/0
geoserver.env
GEOSERVER_DATA_DIR=/opt/geoserver/data_dir
ENABLE_JSONP=true
MAX_FILTER_RULES=20
OPTIMIZE_LINE_WIDTH=false
FOOTPRINTS_DATA_DIR=/opt/footprints_dir
GEOWEBCACHE_CACHE_DIR=/opt/geoserver/data_dir/gwc
GEOSERVER_ADMIN_PASSWORD=myawesomegeoserver
INITIAL_MEMORY=2G
MAXIMUM_MEMORY=4G
XFRAME_OPTIONS='false'
STABLE_EXTENSIONS=''
SAMPLE_DATA=false
GEOSERVER_CSRF_DISABLED=true
docker-compose up
启动两个容器并且 运行 没有错误给它们命名 backend_db_1
(Postgis) 和 backend_geoserver_1
(Geoserver)。我可以按预期在 http://localhost:8600/geoserver/
下的 backend_geoserver_1
中访问 Geoserver 运行。我可以将基于 AWS 的外部 Postgis 作为数据存储连接到我基于 docker 的 Geoserver 实例,没有任何问题。我还可以从 PgAdmin 访问 docker 容器 backend_db_1
中的 Postgis 运行,使用 psql
从命令行和 Webstorm IDE.
但是,如果我尝试在 backend_db_1
中使用我的 Postgis 运行 作为我在 backend_geoserver_1
中的 Geoserver 运行 的数据存储,我会收到以下错误:
> Error creating data store, check the parameters. Error message: Unable
> to obtain connection: Cannot create PoolableConnectionFactory
> (Connection to localhost:25434 refused. Check that the hostname and
> port are correct and that the postmaster is accepting TCP/IP
> connections.)
因此,我在 backend_geoserver_1
中的 Geoserver 可以连接到 AWS 上的 Postgis,但不能连接到同一本地主机上另一个 docker 容器中的 运行。 backend_db_1
中的 Postgis 可以从许多其他本地应用程序和工具访问,但不能从 docker 容器中的 Geoserver 运行 访问。
知道我遗漏了什么吗?谢谢!
只需在 db 和 geoserver 的 YAML 中添加 network_mode
并将其设置为 host
network_mode: host
请注意,这将忽略公开选项并将使用主机网络和容器网络
我为 Geoserver 和 Postgis 使用了 kartoza's docker 图像,并使用提供的 docker-compose.yml 在两个 docker 容器中启动它们:
version: '2.1'
volumes:
geoserver-data:
geo-db-data:
services:
db:
image: kartoza/postgis:12.0
volumes:
- geo-db-data:/var/lib/postgresql
ports:
- "25434:5432"
env_file:
- docker-env/db.env
restart: on-failure
healthcheck:
test: "exit 0"
geoserver:
image: kartoza/geoserver:2.17.0
volumes:
- geoserver-data:/opt/geoserver/data_dir
ports:
- "8600:8080"
restart: on-failure
env_file:
- docker-env/geoserver.env
depends_on:
db:
condition: service_healthy
healthcheck:
test: curl --fail -s http://localhost:8080/ || exit 1
interval: 1m30s
timeout: 10s
retries: 3
引用的 .env 文件是:
db.env
POSTGRES_DB=gis,gwc
POSTGRES_USER=docker
POSTGRES_PASS=docker
ALLOW_IP_RANGE=0.0.0.0/0
geoserver.env
GEOSERVER_DATA_DIR=/opt/geoserver/data_dir
ENABLE_JSONP=true
MAX_FILTER_RULES=20
OPTIMIZE_LINE_WIDTH=false
FOOTPRINTS_DATA_DIR=/opt/footprints_dir
GEOWEBCACHE_CACHE_DIR=/opt/geoserver/data_dir/gwc
GEOSERVER_ADMIN_PASSWORD=myawesomegeoserver
INITIAL_MEMORY=2G
MAXIMUM_MEMORY=4G
XFRAME_OPTIONS='false'
STABLE_EXTENSIONS=''
SAMPLE_DATA=false
GEOSERVER_CSRF_DISABLED=true
docker-compose up
启动两个容器并且 运行 没有错误给它们命名 backend_db_1
(Postgis) 和 backend_geoserver_1
(Geoserver)。我可以按预期在 http://localhost:8600/geoserver/
下的 backend_geoserver_1
中访问 Geoserver 运行。我可以将基于 AWS 的外部 Postgis 作为数据存储连接到我基于 docker 的 Geoserver 实例,没有任何问题。我还可以从 PgAdmin 访问 docker 容器 backend_db_1
中的 Postgis 运行,使用 psql
从命令行和 Webstorm IDE.
但是,如果我尝试在 backend_db_1
中使用我的 Postgis 运行 作为我在 backend_geoserver_1
中的 Geoserver 运行 的数据存储,我会收到以下错误:
> Error creating data store, check the parameters. Error message: Unable
> to obtain connection: Cannot create PoolableConnectionFactory
> (Connection to localhost:25434 refused. Check that the hostname and
> port are correct and that the postmaster is accepting TCP/IP
> connections.)
因此,我在 backend_geoserver_1
中的 Geoserver 可以连接到 AWS 上的 Postgis,但不能连接到同一本地主机上另一个 docker 容器中的 运行。 backend_db_1
中的 Postgis 可以从许多其他本地应用程序和工具访问,但不能从 docker 容器中的 Geoserver 运行 访问。
知道我遗漏了什么吗?谢谢!
只需在 db 和 geoserver 的 YAML 中添加 network_mode
并将其设置为 host
network_mode: host
请注意,这将忽略公开选项并将使用主机网络和容器网络