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