- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据https://hub.docker.com/_/postgres的“初始化脚本”部分,我在docker-entrypoint-initdb.d中有两个文件:
#!/bin/sh
pg_restore -h localhost -p 5432 -U postgres -d postgres -v "/docker-entrypoint-initdb.d/backup.dump"
exit
2019-10-23T17:09:43.032659100Z /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/backup.dump
2019-10-23T17:09:43.032699100Z
2019-10-23T17:09:43.032704200Z /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init-db.sh
2019-10-23T17:09:43.069092100Z pg_restore: connecting to database for restore
2019-10-23T17:09:43.069518400Z pg_restore: error: connection to database "postgres" failed: could not connect to server: Connection refused
2019-10-23T17:09:43.069534000Z Is the server running on host "localhost" (127.0.0.1) and accepting
2019-10-23T17:09:43.069538000Z TCP/IP connections on port 5432?
2019-10-23T17:09:43.069540800Z could not connect to server: Cannot assign requested address
2019-10-23T17:09:43.069543700Z Is the server running on host "localhost" (::1) and accepting
2019-10-23T17:09:43.069546600Z TCP/IP connections on port 5432?
2019-10-23T17:09:45.514371200Z 2019-10-23 17:09:45.514 UTC [1] LOG: starting PostgreSQL 12.0 (Debian 12.0-2.pgdg100+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 8.3.0-6) 8.3.0, 64-bit
2019-10-23T17:09:45.514563000Z 2019-10-23 17:09:45.514 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432
2019-10-23T17:09:45.514629800Z 2019-10-23 17:09:45.514 UTC [1] LOG: listening on IPv6 address "::", port 5432
2019-10-23T17:09:45.522068300Z 2019-10-23 17:09:45.521 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2019-10-23T17:09:45.547131800Z 2019-10-23 17:09:45.547 UTC [23] LOG: database system was interrupted; last known up at 2019-10-23 17:09:42 UTC
2019-10-23T17:09:45.977904500Z 2019-10-23 17:09:45.977 UTC [23] LOG: database system was not properly shut down; automatic recovery in progress
2019-10-23T17:09:45.980523000Z 2019-10-23 17:09:45.980 UTC [23] LOG: invalid record length at 0/16453B0: wanted 24, got 0
2019-10-23T17:09:45.980590000Z 2019-10-23 17:09:45.980 UTC [23] LOG: redo is not required
2019-10-23T17:09:45.994889300Z 2019-10-23 17:09:45.994 UTC [1] LOG: database system is ready to accept connections
version: '3.4'
networks:
dev01:
driver: bridge
services:
webapplication2:
image: ${DOCKER_REGISTRY-}webapplication2
depends_on:
- "pgdev01"
build:
context: .
dockerfile: WebApplication2/Dockerfile
networks:
- dev01
pgdev01:
image: postgres
restart: always
volumes:
- db_volume:/var/lib/postgresql/data
- ./dbscripts/:/docker-entrypoint-initdb.d/
networks:
- dev01
volumes:
db_volume:
version: '3.4'
services:
webapplication2:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://+:443;http://+:80
- ASPNETCORE_HTTPS_PORT=44361
ports:
- "61225:80"
- "44361:443"
volumes:
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
- ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro
pgdev01:
ports:
- "5434:5432"
environment:
POSTGRES_PASSWORD: "redacted"
最佳答案
您遇到此问题是因为您在-h localhost
文件中包含了init-db.sh
。如果删除它,一切都会正常。
发生这种情况是因为在docker-entrypoint.sh
图像提供的默认postgres
文件中将是empty out listen_addresses
during the initialization phase。因此,它不会监听localhost
。
披露:我为Enterprisedb (EDB)工作
关于postgresql - 为什么docker-entrypoint-initdb.d中的脚本在数据库开始监听导致pg_restore失败的连接之前运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58528091/
我正在 Circleci 上使用 docker-compose 来启动一个 postgres 容器,其中包含一堆安装在 /docker-entrypoint-initdb.d/ 上的 sql 文件。
我之前使用安装程序安装了 alfresco 社区版,但我的服务器最终用完了硬盘空间,一切都崩溃了。我无法运行卸载程序(出现奇怪的权限问题)。 所以我删除了整个安装文件夹并尝试重新安装。当我以 root
我是 Airflow 新手。我按照此处提供的说明进行操作:https://www.youtube.com/watch?v=SYOUbiGtGiU&t=49s 第 1 步:控制面板 |程序和功能 |打开
我刚开始使用 Airflow ,我使用了命令:airflow initdb根据需要启动 Airflow 数据库。 但我偶然发现了错误:import cattr File "/home/adrienb/
根据https://hub.docker.com/_/postgres的“初始化脚本”部分,我在docker-entrypoint-initdb.d中有两个文件: init-db.sh backup.
我正在尝试初始化我的docker arangodb,但一直出现连接错误:我尝试将服务器端点更改为http + tcp:// .....,但错误仍然存在,这可能是怎么回事? docker-compo
我已在基于 oraclelinux:7.1 镜像(Docker 版本 1.12.5)的 docker 容器中安装了 Oracle 12c。不过有一个小问题。运行容器时,目录/docker-entryp
我有一个本地Openshift实例,在该实例中,我尝试使用helm安装Sentry: helm install --name sentry --wait stable/sentry。 除了Postgr
我在 postgres 后端遇到 Airflow 初始化问题 Ubuntu:18.04.1 Airflow :v1.10.6 Postgres:10.10 Python 3.6 当我运行时 airfl
每当我尝试运行下面的命令时,它在 RHEL7 上总是失败。我试过另一个类似的操作系统(较新),但它不这样做,只是工作。 我查看了目录的权限,禁用了 selinux(以防万一),还查看了区域设置,但是这
如何使用 initdb 为 PostgreSQL 创建临时数据库?另外,如何使用虚拟数据填充它以及如何在使用后删除它? 我有一个完整的数据库模式。我不想一张一张地创建临时表。使用 initdb,我希望
我已经使用 EnterpriseDB 安装安装了 PostgreSQL。 我运行了 sudo ./postgresql-9.3.5-3-osx.app/Contents/MacOS/installbu
我正致力于在 Linux 系统(CentOS - RedHat - Fedora)上的 PostgreSQL 9.x 中创建一个数据库集群(单一数据库)。我已经安装了正确的 PostgreSQL 包(
我正在使用 mysql docker 容器并将初始化脚本添加到 docker-entrypoint-initdb.d 中,如下所述:https://hub.docker.com/_/mysql/ (初
我在 docker-compose.yml 中使用两个服务对一个应用程序进行 docker 化:一个是从 php:7.3.28-apache 构建的网络图像,另一个是从 postgres:11.12-
我关注 http://book.cakephp.org/2.0/en/tutorials-and-examples/simple-acl-controlled-application/part-two
我在名为 engdados 的 Anaconda 环境之一中安装了 Airflow 。当我执行命令 Airflow initdb 时,我收到以下错误:airflow initdb: cannot im
“airflow initdb”命令和“airflow resetdb”命令之间究竟有什么区别? 真的有必要有 2 个不同的命令吗? 什么时候使用一种和另一种比较合适? doc说... airflow
我按照文档安装了 Apache-airflow。 https://airflow.apache.org/docs/stable/start.html 当我执行airflow initdb时,每次都会出
生成mariadb图像时,我想执行脚本以及初始化数据库模式。 我将这些文件放在/docker-entrypoint-initdb.d下 模式初始化按预期工作 Shell脚本包含apt-get inst
我是一名优秀的程序员,十分优秀!