1

我正在尝试像往常一样在本地计算机上运行 postgresql,但这使我处于无法修复的境地。我用 macports 安装了 postgresql91。

这些是我通常必须运行的三个命令才能使其运行:

    sudo sysctl -w kern.sysv.shmall=4096
    sudo sysctl -w kern.sysv.shmmax=16777216
    sudo su postgres -c "/opt/local/lib/postgresql91/bin/postgres -D /opt/local/var/db/postgresql91/defaultdb -p 55432"

但是,它今天给了我这个错误:

    Nets-Mac-Pro:~ emai$ sudo sysctl -w kern.sysv.shmall=4096
    Password:
    kern.sysv.shmall: 4096 -> 4096
    Nets-Mac-Pro:~ emai$ sudo sysctl -w kern.sysv.shmmax=16777216
    kern.sysv.shmmax: 16777216 -> 16777216
    Nets-Mac-Pro:~ emai$ sudo su postgres -c "/opt/local/lib/postgresql91/bin/postgres -D /opt/local/var/db/postgresql91/defaultdb -p 55432"
    postgres cannot access the server configuration file "/opt/local/var/db/postgresql91/defaultdb/postgresql.conf": Permission denied

当我/opt/local/var/db/postgresql91/去做ls -l这件事时:

drwx------  18 root  wheel  612 Jun 28 12:44 defaultdb

所以我决定将postgres用户加入到wheel组中,然后chmod defaultdb为770。

drwxrwx---  18 root  wheel  612 Jun 28 12:44 defaultdb

我仍然收到错误:

FATAL:  could not open configuration file "/opt/local/var/db/postgresql91/defaultdb/postgresql.conf": Permission denied

所以我改变了文件权限:

-rw-------   1 root  wheel  19170 Jan  7 11:52 postgresql.conf

至:

-rw-rw----   1 root  wheel  19170 Jan  7 11:52 postgresql.conf

现在它抱怨当我再次运行命令时:

    Nets-Mac-Pro:~ emai$ sudo su postgres -c "/opt/local/lib/postgresql91/bin/postgres -D /opt/local/var/db/postgresql91/defaultdb -p 55432"
    FATAL:  data directory "/opt/local/var/db/postgresql91/defaultdb" has wrong ownership
    HINT:  The server must be started by the user that owns the data directory.

考虑到文件的文件权限,我不知道如何运行 postgres 服务器。我在哪里可以找到data它提示我的文件夹?有没有更好的方法来解决这个问题?

4

1 回答 1

6

Postgres 应该是所有者,并且是唯一能够写入数据目录的用户。

所以,做:

sudo chown -Rf postgres:postgres /opt/local/var/db/postgresql91/defaultdb
sudo chmod 700 /opt/local/var/db/postgresql91/defaultdb

应该没问题。

于 2013-07-03T21:04:40.400 回答