postgresql - 使用 Postgres 的无人机 - psql : could not connect to server: No such file or directory

标签 postgresql drone.io

我尝试使用 postgres 插件设置无人机服务器,但完全无法让它工作。

我所做的是从文档中复制默认的无人机设置:

---
  kind: pipeline
  type: docker
  name: default

  steps:
    - name: test
      image: postgres:9-alpine
      commands:
        - sleep 5 #give the service some time to start
        - psql -U postgres -d test

  services:
    - name: database
      image: postgres:9-alpine
      environment:
        POSTGRES_USER: postgres
        POSTGRES_PASSWORD: password
        POSTGRES_DB: test

但是我在尝试启动时遇到以下错误

psql: could not connect to server: No such file or directory
    Is the server running locally and accepting
    connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?

我的猜测是 postgres 由于某种原因没有启动,但这很难说。

这是 Postgres 日志:

The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.

The database cluster will be initialized with locale "en_US.utf8".
The default database encoding has accordingly been set to "UTF8".
The default text search configuration will be set to "english".

Data page checksums are disabled.

fixing permissions on existing directory /var/lib/postgresql/data ... ok
creating subdirectories ... ok
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting default timezone ... UTC
selecting dynamic shared memory implementation ... posix
creating configuration files ... ok
running bootstrap script ... ok
sh: locale: not found
performing post-bootstrap initialization ... No usable system locales were found.
Use the option "--debug" to see details.
ok
syncing data to disk ... ok

WARNING: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the option -A, or
--auth-local and --auth-host, the next time you run initdb.

Success. You can now start the database server using:

    pg_ctl -D /var/lib/postgresql/data -l logfile start

waiting for server to start....LOG:  database system was shut down at 2020-05-27 08:49:09 UTC
LOG:  MultiXact member wraparound protections are now enabled
LOG:  database system is ready to accept connections
LOG:  autovacuum launcher started
 done
server started
CREATE DATABASE


/usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*

LOG:  received fast shutdown request
LOG:  aborting any active transactions
LOG:  autovacuum launcher shutting down
LOG:  shutting down
waiting for server to shut down....LOG:  database system is shut down
 done
server stopped

PostgreSQL init process complete; ready for start up.

LOG:  database system was shut down at 2020-05-27 08:49:11 UTC
LOG:  MultiXact member wraparound protections are now enabled
LOG:  database system is ready to accept connections
LOG:  autovacuum launcher started

要么 Postgres 启动得很好,但在其他进程有机会进行通信之前,有什么东西杀死了它。但我并不完全确定。

如有任何帮助,我们将不胜感激。

最佳答案

Drone 在自己的容器中启动具有自己主机名的服务。
在您的情况下,您将服务命名为database,因此在与psql连接时,您需要传递主机名,以便psql通过以下方式与容器建立连接TCP:

psql -U postgres -d test -h database

关于postgresql - 使用 Postgres 的无人机 - psql : could not connect to server: No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62039156/

相关文章:

java - 恢复多对多关系元素时出现问题

java - 从数据库迭代和处理整个表的最佳方法是什么?

mysql - SQL varchar 列长度的最佳实践

sql - PostgreSQL 文本范围扫描

go - 无人机日志存储在哪里?

drone - 使用 "Drone Conditions"运行构建存储库的一部分

sql - 如果值与之前的行匹配,PostgreSQL 会减少行

docker - 使用无人机电子邮件插件时,无人机 CI 不会看到 secret 变量

github - 设置本地无人机服务器 : Unable to login. 注册已关闭

docker - 无人机(Docker-Compose 在 docker 中?)