我对在 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
位置读取配置文件。未经so修改的/etc/postgresql/10/main/postgresql.conf
says to use默认为md5密码认证。/etc/postgresql/10/main/pg_hba.conf
initdb
我对为什么启动脚本使用正确的数据目录/var
但从另一个位置获取它们的配置感到困惑/etc
。
这是我可以让服务器以正确的配置启动的唯一方法/var
,而且它非常罗嗦,所以我宁愿使用以下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