Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a problem with my postgreSQL setup on my new Mac OSX Lion machine.

I can't seem to connect to the service

$ createuser -a -d _postgres
Password: 
createuser: could not connect to database postgres: FATAL:  password authentication failed for user 

I have no chance to find the correct password. Any idea what could that be. I have the default setup with a localhost server. The same happens when I try to connect via pgAdmin.

$ su postgres
Password:
su: Sorry

I have no chance to find out what's wrong?

share|improve this question
1  
Is FATAL: password authentication failed for user the reason? – xdazz Oct 14 '11 at 9:01
no, id don't think so. I typed my userpass a 100 times. It's always the same message. And I don't think in this case I should enter the userpass, but rather the database password! – matt Oct 14 '11 at 9:30

closed as off topic by Lightness Races in Orbit, Ian Ringrose, Milen A. Radev, Peter Eisentraut, Graviton Oct 17 '11 at 13:43

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.

2 Answers

up vote 15 down vote accepted

try this:

$ sudo su postgres

And specify your own password.

share|improve this answer
this does work! bash-3.2$ However how can I fix the problem with createuser -a -d _postgres -> `could not connect to database postgres: FATAL: password authentication failed for user "postgres" Any idea how to fix this? – matt Oct 14 '11 at 9:08
Usually when you are logged in as postgres, you have superuser access to the database and doesn't need to provide the password for the postgres user. – jishi Oct 14 '11 at 12:31

Does this work?

First get root access

$ su - 
Password: RootPW
# su - postgres
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.