Saturday, June 14, 2008

Change PostgreSQL Password

From linux command prompt:

su - postgres
psql -d template1 -U postgres

alter user postgres with password 'postgres_password';
ctrl+d

No comments: