* Postgresql 로컬 접속시 비밀번호 물어보도록 변경
** 설정방법
**# <postgresql config>/pg_hba.conf 를 에디트합니다.
**# 맨 하단에 접속 설정 부분에 trust를 password로 변경합니다.
# "local" is for Unix domain socket connections only
local all all password
# IPv4 local connections:
host all all 127.0.0.1/32 password
# IPv6 local connections:
host all all ::1/128 password
# Allow replication connections from localhost, by a user with the
# replication privilege.
#local replication postgres trust
#host replication postgres 127.0.0.1/32 trust
#host replication postgres ::1/128 trust
** 관련 링크
*** http://www.postgresql.org/docs/9.1/static/auth-pg-hba-conf.html
* DB 백업 명령어
** pg_dump --encoding='UTF8' -U <DBName> <UserName> > <backup file>
* DB 복구 명령어
** psql -U <DBName> <UserName> < <backup file>
Git Tag 관리하기 (0) | 2015.10.23 |
---|---|
Git 저장소 관리 프로그램 GitLab 설치하기 (0) | 2015.10.22 |
무료 솔루션 wizmall 설치하기 (0) | 2015.10.07 |
Linux 한글 폴더 이름의 인코딩 변경 ( convmv ) (0) | 2015.09.16 |
OpenSSL 명령어 (0) | 2015.08.03 |