DB/PostgreSQL(2)
-
psql: FATAL: Peer authentication failed for user "postgres"
psql: FATAL: Peer authentication failed for user "postgres" host 지정이 안되어 있어서 해당 유져를 차지 못함. psql 실행 옵션에 -h localhost 를 추가해준다. psql -U postgres -W -h localhost
2013.08.29 -
postgreSQL 설치
postgreSQL 설치 apt-get install postgresql 커맨드쉘 접속 sudo -u postgres psql postgres 비밀번호 업데이트 alter user postgres with encrypted password '비밀번호';
2013.08.29