Какой самый простой способ изменить пароль root
для PostgreSql phpPgAdmin
?
1
1 ответ
3
# sudo su - postgres
# psql -d template1
template1=# ALTER USER postgres WITH PASSWORD 'new password';
# service postgresql restart
# sudo su - postgres
# psql -d template1
template1=# ALTER USER postgres WITH PASSWORD 'new password';
# service postgresql restart