我需要在前台启动PostgreSQL(即postgres -D path/to/db
)。 I have tried this:
addons
apt:
sources:
- precise-pgdg-9.5
packages:
- postgresql-9.5
- postgresql-contrib-9.5
postgresql: '9.5'
有效(initdb
和postgres
在$ PATH中)但是tests fail with this:
Error: could not create lock file "/var/run/postgresql/.s.PGSQL.18174.lock": Permission denied
即使使用sudo: required
更新
chown -R /var/run/postgresql
will not work。
答案 0 :(得分:0)
可以使用-c
标志在运行时更改锁定文件位置。
$ postgres -D /path/to/datadir -c unix_socket_directory=/path/to/socketdir
提供当前用户具有权限的目录的路径。