Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I recently installed Postgres 9.2 on my Mac that runs Osx 10.6.8. I used the installer, not the source files or any other method.

After it had installed, I was able to connect to the database through pgAdmin (that also got installed with the DB), and my Java programs could also make jdbc connections to it.

So, I conclude that the server must have been started after the installation.

I have since come back to my Mac and found that the server is not running any longer. My Java programs cannot connect and also I cannot connect via pgAdmin.

Tried to start the server and check the status using /Library/PostgreSQL/9.2/bin/pg_ctl command, and got this error:

pg_ctl: could not open PID file "/Library/PostgreSQL/9.2/data/postmaster.pid": Permission denied

Tried to change ownership, both for the above PID file and all Postgres files, with the chown command, and got this error:

chown: /Library/PostgreSQL/9.2/data/postmaster.pid: Permission denied

Tried to execute all above command as sudo , su root, su , got errors: sudo: unknown user: root

The ownership of the Postgres files is 'daemon' - but how can I then do anything from the command line where I am not that user?

The question is: how to start the server?

I must say dealing with Mac's is becoming utterly frustrating, as it seems to be so far away from a 'normal' Linux (eg Ubuntu) OS.

Any help is greatly appreciated.

John

share|improve this question
Which installer? postgresql.org/download/macosx lists 4 of them. – Daniel Vérité Jan 17 at 15:16

closed as off topic by Milen A. Radev, Ash Burlaczenko, ewall, dty, rds Jan 17 at 16:28

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.