PostgreSQL 10 从 /etc 读取 postgresql.conf 但数据目录在 /var 中指定

PostgreSQL 10 reads postgresql.conf from /etc but data directory specified in /var

我对 WSL2 Ubuntu 上的 PostgreSQL 10 安装配置感到困惑。

我初始化数据库以使用信任身份验证(不是我的要求,我知道不安全)并指定数据目录,如:

/usr/lib/postgresql/10/bin/initdb -Atrust 
-D /var/lib/postgresql/10/main/

我检查了 /var/lib/postgresql/10/main/pg_hba.conf,它正确地显示了所有主机的信任身份验证。 但是,当我使用以下任一方法启动服务器时:

$ sudo service postgresql start
$ sudo su postgres -c 'pg_ctlcluster 10 main start'

没有密码我无法登录,例如身份验证方法不可信。

在 运行 ps -ef | grep postgresql 之后我看到了这个:

/usr/lib/postgresql/10/bin/postgres 
-D /var/lib/postgresql/10/main 
-c config_file=/etc/postgresql/10/main/postgresql.conf

它正在使用正确的数据目录,但从 /etc 位置读取配置文件。 /etc/postgresql/10/main/postgresql.conf 表示使用未被 initdb 修改的 /etc/postgresql/10/main/pg_hba.conf,因此默认使用 md5 密码验证。

我很困惑为什么启动脚本在 /var 中使用正确的数据目录,但从 /etc.

的另一个位置获取它们的配置

这是我让服务器以 [​​=25=] 中的正确配置启动的唯一方法,它非常冗长,所以我宁愿使用 system 命令:

sudo su postgres -c '/usr/lib/postgresql/10/bin/pg_ctl start 
-D  /var/lib/postgresql/10/main 
-l /var/log/postgresql/postgresql-10-main.log'

任何帮助将不胜感激,提前致谢。

我在 Windows 10 上的 WSL2 上的 Ubuntu 上使用 PostgreSQL 10。以下是我的安装详细信息: Linux 和 Ubuntu:

$ uname -a
Linux ISC20-0521-WD 4.4.0-17763-Microsoft #864-Microsoft Thu Nov 07 15:22:00 PST 2019 x86_64 x86_64 x86_64 GNU/Linux
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 18.04.3 LTS
Release:        18.04
Codename:       bionic

pg 版本:

$ psql --version
psql (PostgreSQL) 10.10 (Ubuntu 10.10-0ubuntu0.18.04.1)

这是 pgconfig 的输出:

$ pg_config
BINDIR = /usr/lib/postgresql/10/bin
DOCDIR = /usr/share/doc/postgresql-doc-10
HTMLDIR = /usr/share/doc/postgresql-doc-10
INCLUDEDIR = /usr/include/postgresql
PKGINCLUDEDIR = /usr/include/postgresql
INCLUDEDIR-SERVER = /usr/include/postgresql/10/server
LIBDIR = /usr/lib/x86_64-linux-gnu
PKGLIBDIR = /usr/lib/postgresql/10/lib
LOCALEDIR = /usr/share/locale
MANDIR = /usr/share/postgresql/10/man
SHAREDIR = /usr/share/postgresql/10
SYSCONFDIR = /etc/postgresql-common
PGXS = /usr/lib/postgresql/10/lib/pgxs/src/makefiles/pgxs.mk
CONFIGURE = '--with-icu' '--with-tcl' '--with-perl' '--with-python' '--with-pam' '--with-openssl' '--with-libxml' '--with-libxslt' '--with-tclconfig=/usr/lib/x86_64-linux-gnu/tcl8.6' '--with-includes=/usr/include/tcl8.6' 'PYTHON=/usr/bin/python' '--mandir=/usr/share/postgresql/10/man' '--docdir=/usr/share/doc/postgresql-doc-10' '--sysconfdir=/etc/postgresql-common' '--datarootdir=/usr/share/' '--datadir=/usr/share/postgresql/10' '--bindir=/usr/lib/postgresql/10/bin' '--libdir=/usr/lib/x86_64-linux-gnu/' '--libexecdir=/usr/lib/postgresql/' '--includedir=/usr/include/postgresql/' '--with-extra-version= (Ubuntu 10.10-0ubuntu0.18.04.1)' '--enable-nls' '--enable-integer-datetimes' '--enable-thread-safety' '--enable-tap-tests' '--enable-debug' '--disable-rpath' '--with-uuid=e2fs' '--with-gnu-ld' '--with-pgport=5432' '--with-system-tzdata=/usr/share/zoneinfo' '--with-systemd' 'CFLAGS=-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -fno-omit-frame-pointer' 'LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now' '--with-gssapi' '--with-ldap' '--with-includes=/usr/include/mit-krb5' '--with-libs=/usr/lib/mit-krb5' '--with-libs=/usr/lib/x86_64-linux-gnu/mit-krb5' '--with-selinux' 'CPPFLAGS=-Wdate-time -D_FORTIFY_SOURCE=2'
CC = gcc
CPPFLAGS = -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include/mit-krb5
CFLAGS = -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -g -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -fno-omit-frame-pointer
CFLAGS_SL = -fPIC
LDFLAGS = -Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now -L/usr/lib/x86_64-linux-gnu/mit-krb5 -Wl,--as-needed
LDFLAGS_EX =
LDFLAGS_SL =
LIBS = -lpgcommon -lpgport -lpthread -lselinux -lxslt -lxml2 -lpam -lssl -lcrypto -lgssapi_krb5 -lz -ledit -lrt -lcrypt -ldl -lm

和pg_lsclusters:

$ pg_lsclusters -s
Ver Cluster Port Status      Owner    Data directory              Log file
10  main    5432 online,auto postgres /var/lib/postgresql/10/main /var/log/postgresql/postgresql-10-main.log

Debian/Ubuntu 软件包选择将配置文件放在 /etc 而不是数据目录中,这是一个不寻常但有效的选择。

最好使用 Ubunto 软件包提供的 pg_createcluster 脚本来创建集群。这会将配置文件放置在 /etc 中,并且应该对您有用。