尝试启动 PostgreSQL 时,我收到此“空”错误消息:
root@mountain-lion:/home/ubuntu# service postgresql start
* Starting PostgreSQL 9.1 database server
* Error: could not exec /usr/lib/postgresql/9.1/bin/pg_ctl /usr/lib/postgresql/9.1/bin/pg_ctl start -D /vol/postgres -l /var/log/postgresql/postgresql-9.1-main.log -s -o -c config_file="/etc/postgresql/9.1/main/postgresql.conf" :
这是一个新安装的 Ubuntu 11.10 服务器(在 EC2 / Scalarium 上),postgresql-9.1
刚刚通过apt-get
.
postgresql.conf 中有一个更改配置值:
data_directory = '/vol/postgres'
/vol/postgres
看起来像这样
drwx------ 5 postgres postgres 38 2012-05-18 15:13 base
drwx------ 2 postgres postgres 4096 2012-05-18 15:13 global
drwx------ 2 postgres postgres 17 2012-05-18 15:12 pg_clog
drwx------ 4 postgres postgres 34 2012-05-18 15:12 pg_multixact
drwx------ 2 postgres postgres 17 2012-05-18 15:13 pg_notify
drwx------ 2 postgres postgres 6 2012-05-18 15:12 pg_serial
drwx------ 2 postgres postgres 24 2012-05-18 15:13 pg_stat_tmp
drwx------ 2 postgres postgres 17 2012-05-18 15:12 pg_subtrans
drwx------ 2 postgres postgres 6 2012-05-18 15:12 pg_tblspc
drwx------ 2 postgres postgres 6 2012-05-18 15:12 pg_twophase
-rw------- 1 postgres postgres 4 2012-05-18 15:12 PG_VERSION
drwx------ 3 postgres postgres 58 2012-05-18 15:12 pg_xlog
-rw------- 1 postgres postgres 133 2012-05-18 15:13 postmaster.opts
lrwxrwxrwx 1 root root 36 2012-05-18 15:13 server.crt -> /etc/ssl/certs/ssl-cert-snakeoil.pem
lrwxrwxrwx 1 root root 38 2012-05-18 15:13 server.key -> /etc/ssl/private/ssl-cert-snakeoil.key
任何想法?
更新:当我设置data_directory
为默认值 ( /var/lib/postgresql/9.1/main
) 时,它工作正常,因此该特定更改一定有问题。
固定的。
/vol/postgres
首先,我更改了to的所有者postgres
(在对问题发表评论之后)。这导致了以下可以理解的错误:所以我按照它说的做了,现在它开始了。