Skip to content

Instantly share code, notes, and snippets.

@vlado
Last active April 3, 2018 08:36
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save vlado/1877457 to your computer and use it in GitHub Desktop.
Save vlado/1877457 to your computer and use it in GitHub Desktop.
Postgres on macos or OSX - Fix
# ** ERROR 1 **
# FATAL: lock file "postmaster.pid" already exists
# HINT: Is another postmaster (PID 4646) running in data directory "/usr/local/var/postgres"?
#
# ** ERROR 2 **
# Is the server running locally and accepting connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
#
# To fix one of this errors:
cat /usr/local/var/postgres/postmaster.pid # pid is the number on first line
kill -9 1116 # replace 1116 with pid number (first line) from postmaster.pid file
# Or
pg_ctl -D /usr/local/var/postgres stop
pg_ctl -D /usr/local/var/postgres start
# Or
cd /usr/local/var/postgres
mv postmaster.pid postmaster.backup
pg_ctl -D /usr/local/var/postgres start
rm postmaster.backup
@omnikron
Copy link

omnikron commented Apr 3, 2013

awesome, thanks

@jkarmel
Copy link

jkarmel commented Jul 10, 2013

yes thank you, this was helpful!

@leonardorb
Copy link

Thanks!

@roberta-almeida
Copy link

Thaank you!! Very, very helpful!! :)

@nathancolgate
Copy link

Thanks!

@kamag7
Copy link

kamag7 commented Dec 20, 2013

I have other problem. I've tried this
"pg_ctl -D /Library/PostgreSQL/9.3/bin/postgres start"
and I got
pg_ctl: could not open PID file "/Library/PostgreSQL/9.3/bin/postgres/postmaster.pid": Not a directory

Please help...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment