Mac OS X 10.8.4에서 PostgreSQL에 약간의 문제가 있습니다. brew rm postgresql --force
postgres 서버가 실행되는 동안 실수로 그랬습니다 . 사용하여 설치 brew install postgresql
하고 실행 pg_ctl -D /usr/local/var/postgres start
하면 다음을 얻습니다.
pg_ctl: another server might be running; trying to start server anyway
server starting
FATAL: lock file "postmaster.pid" already exists
HINT: Is another postmaster (PID 752) running in data directory "/usr/local/var/postgres"?
"ps -ef | grep postgres"를 실행하면 다음과 같은 결과가 나타납니다.
501 752 235 0 12:42PM ?? 0:00.01 /usr/local/opt/postgresql/bin/postgres -D /usr/local/var/postgres -r /usr/local/var/postgres/server.log
501 754 752 0 12:42PM ?? 0:00.00 postgres: checkpointer process
501 755 752 0 12:42PM ?? 0:00.34 postgres: writer process
501 756 752 0 12:42PM ?? 0:00.02 postgres: wal writer process
501 757 752 0 12:42PM ?? 0:00.01 postgres: autovacuum launcher process
501 758 752 0 12:42PM ?? 0:00.01 postgres: stats collector process
501 945 452 0 12:58PM ttys000 0:00.00 grep postgres
서버를 중지하려고 pg_ctl stop -D /usr/local/var/postgres -m fast
하거나 다음 pg_ctl -D /usr/local/var/postgres stop -mi
을 얻습니다.
waiting for server to shut down........................................... Failed
pg_ctl: server does not shut down
편집하다
which pg_ctl
/usr/local/bin/pg_ctl
pg_ctl --version
pg_ctl (PostgreSQL) 9.2.4
요점 server.log
: https://gist.github.com/anonymous/6106182
pg_ctl -D /usr/local/var/postgres stop -m immediate
다른 두 시도보다 더 얻을?