도움이됩니다.
1.
파일 열기 pg_hba.conf
sudo nano /etc/postgresql/9.x/main/pg_hba.conf
이 줄을 변경하십시오.
Database administrative login by Unix domain socket
local all postgres md5
에
Database administrative login by Unix domain socket
local all postgres trust
서버를 다시 시작하십시오.
sudo 서비스 postgresql 다시 시작
psql에 로그인 하고 비밀번호를 설정하십시오.
psql -U postgres
ALTER USER postgres with password 'new password';
- 다시 파일을 열고
pg_hba.conf
다음 줄을 변경합니다.
Unix 도메인 소켓에 의한 데이터베이스 관리 로그인
로컬 모든 postgres 신뢰
에
Unix 도메인 소켓에 의한 데이터베이스 관리 로그인
로컬 모든 postgres md5
- 서버를 다시 시작하십시오.
sudo 서비스 postgresql 다시 시작
효과가있다.
유용한 링크
1 :
PostgreSQL (ubuntu.com에서 제공)