Je viens d'installer PostgreSQL 9.2
de enterprisedb sur Mac OS X 10.8.2
. J'ai mal saisi mon postgres
mot de passe utilisateur, donc je ne peux pas me connecter. Comment réinitialiser le mot de passe?
Sudo su postgres
modifier /Library/PostgreSQL/9.2/data/pg_hba.conf
-local all all md5
+local all all trust
redémarrer postgres
/Library/PostgreSQL/9.2/bin/pg_ctl restart -D /Library/PostgreSQL/9.2/data/
Connectez-vous aux postgres:
psql
Psql intérieur (\q
quitter):
ALTER USER postgres WITH ENCRYPTED PASSWORD 'password';
modifier pg_hba.conf retour
+local all all md5
-local all all trust
redémarrer postgres
/Library/PostgreSQL/9.2/bin/pg_ctl restart -D /Library/PostgreSQL/9.2/data/