Vasseurth
Vasseurth

Reputation: 6486

Setting Up PostgreSQL for Rails on a Mac

I just recently installed postgresql for mac with this. The problem I get, however, is that I never stated a password for the user 'postgres' but this seems vitally necessary to do anything with postgresql.

Upvotes: 2

Views: 196

Answers (1)

Igor
Igor

Reputation: 33993

In the future, you do not need to completely reinstall, you can change the password with:

ALTER USER postgres WITH PASSWORD '<newPassword>';

Upvotes: 2

Related Questions