I've recently upgraded to OSX Lion and am having this annoying problem (bug?) with PostgreSQL.
psql: could not connect to server: Permission denied
Is the server running locally and accepting
connections on Unix domain socket "/var/pgsql_socket/.s.PGSQL.5432"?
I've found a simple solution via changing the order of the paths file in /etc/paths and edit it from being:
/usr/bin
/bin
/usr/sbin
/sbin
/usr/local/bin
to being:
/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin
I've been told that I shouldn't be editing the actual /etc/paths file. Why is this so? What causes this bug? And what is the proper way of getting around it?
