[PostgreSQL] postgres 비밀번호 초기화
Windows (예: postgreSQL 10의 경우) 1. C:\Program Files\PostgreSQL\10\data\pg_hba.conf 파일 수정: md5를 trust로 수정합니다. 2. PostgreSQL 서비스를 재기동(윈키+R > services.msc 입력) 3. C:\Program Files\PostgreSQL\10\scripts\runpsql.bat 또는 이하의 위치의 psql을 실행 디폴트 설정을 둔 상태에서 엔터를 치고 이하의 쿼리로 postgres의 패스워드를 변경합니다. 패스워드는 변경하고자 하는 문자열을 입력하고 구문의 마지막에 ;을 반드시 추가합니다. postgres=# alter user postgres with password 'postgres'; 4. pg_hba.c..
개발
2021. 6. 15. 19:35