Я хочу иметь возможность использовать pg_ctl для управления моей базой данных crewdb. Однако, когда я использую статус pg_ctl, я получаю следующую ошибку:
chh1@chh1:~$ pg_ctl status
pg_ctl: could not open PID file "/var/lib/postgresql/10/main/postmaster.pid": Permission denied
Я не уверен, почему это так, и как это исправить, потому что когда я это делаю:
chh1@chh1:~$ which pg_ctl
/usr/lib/postgresql/10/bin/pg_ctl
chh1@chh1:~$ which initdb
/usr/lib/postgresql/10/bin/initdb
chh1@chh1:~$ whoami
chh1
crewdb=# \du
List of roles
Role name | Attributes | Member of
-----------+------------------------------------------------------------+-----------
chh1 | Superuser | {}
postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
chh1@chh1:~$ cat .profile
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
PATH=$PATH:/usr/lib/postgresql/10/bin
PGDATA=/var/lib/postgresql/10/main
PGDATABASE=crewdb
PGUSER=postgres
export PATH PGDATA PGDATABASE PGUSER
Я попробовал PGUSER = chh1 вместо PGUSER = postgres в .profile, но все равно получаю то же сообщение об ошибке, когда я выдаю команду pg_ctl status. Кто-нибудь может помочь мне в этом? У меня есть следующий postgresql кластер:
chh1@chh1:~$ ps -ef | grep postgres
postgres 2094 1 0 11:08 ? 00:00:01 /usr/lib/postgresql/10/bin/postgres -D /var/lib/postgresql/10/main -c config_file=/etc/postgresql/10/main/postgresql.conf
postgres 2114 2094 0 11:08 ? 00:00:00 postgres: 10/main: logger process
postgres 2123 2094 0 11:08 ? 00:00:00 postgres: 10/main: checkpointer process
postgres 2124 2094 0 11:08 ? 00:00:00 postgres: 10/main: writer process
postgres 2125 2094 0 11:08 ? 00:00:00 postgres: 10/main: wal writer process
postgres 2126 2094 0 11:08 ? 00:00:01 postgres: 10/main: autovacuum launcher process
postgres 2127 2094 0 11:08 ? 00:00:01 postgres: 10/main: stats collector process
postgres 2128 2094 0 11:08 ? 00:00:00 postgres: 10/main: bgworker: logical replication launcher
chh1 6401 17468 0 17:47 pts/1 00:00:00 grep --color=auto postgres
Также кажется необычным, что я должен быть root, чтобы открыть каталог данных, например:
chh1@chh1:~$ cd /var/lib/postgresql/10/main
bash: cd: /var/lib/postgresql/10/main: Permission denied
root@chh1:/var/lib/postgresql/10/main# ls -l
total 100
drwx------ 20 postgres postgres 4096 Jan 13 11:08 ./
drwxr-xr-x 3 postgres postgres 4096 Jul 24 19:12 ../
drwx------ 6 postgres postgres 4096 Aug 10 23:04 base/
-rw------- 1 postgres postgres 44 Jan 13 11:08 current_logfiles
drwx------ 2 postgres postgres 4096 Jan 13 11:08 global/
drwx------ 2 postgres postgres 4096 Jan 13 11:08 log/
drwx------ 2 postgres postgres 4096 Jul 24 19:12 pg_commit_ts/
drwx------ 2 postgres postgres 4096 Jul 24 19:12 pg_dynshmem/
drwx------ 4 postgres postgres 4096 Jan 13 11:13 pg_logical/
drwx------ 4 postgres postgres 4096 Jul 24 19:12 pg_multixact/
drwx------ 2 postgres postgres 4096 Jan 13 11:08 pg_notify/
drwx------ 2 postgres postgres 4096 Jul 24 19:12 pg_replslot/
drwx------ 2 postgres postgres 4096 Jul 24 19:12 pg_serial/
drwx------ 2 postgres postgres 4096 Jul 24 19:12 pg_snapshots/
drwx------ 2 postgres postgres 4096 Jan 13 11:08 pg_stat/
drwx------ 2 postgres postgres 4096 Jul 24 19:12 pg_stat_tmp/
drwx------ 2 postgres postgres 4096 Jan 3 06:12 pg_subtrans/
drwx------ 2 postgres postgres 4096 Jul 24 19:12 pg_tblspc/
drwx------ 2 postgres postgres 4096 Jul 24 19:12 pg_twophase/
-rw------- 1 postgres postgres 3 Jul 24 19:12 PG_VERSION
drwx------ 3 postgres postgres 4096 Jan 3 06:12 pg_wal/
drwx------ 2 postgres postgres 4096 Jul 24 19:12 pg_xact/
-rw------- 1 postgres postgres 88 Jul 24 19:12 postgresql.auto.conf
-rw------- 1 postgres postgres 130 Jan 13 11:08 postmaster.opts
-rw------- 1 postgres postgres 108 Jan 13 11:08 postmaster.pid
Мое мышление это изменить права доступа к файлу в /var/lib/postgresql/10/main/
на chh1: chh1, но я не уверен, безопасно ли это делать, не подвергая риску мои данные. пожалуйста, дайте мне знать, если вам нужна дополнительная информация.