Linux
PostgreSQL설치
씨엔아이소프트
2020. 1. 22. 16:43
반응형
# CentOS 6에 yum postgresql을 설치
$ yum install postgresql postgresql-client postgresql-server
$ yum install php-pgsql
설치가 끝나면 자동적으로 [postgres]라는 유저가 생성된다.
# 비밀번호를 설정하자.(설정하기 전에는 비밀번호는 없다. 단, root에서 로그인할때만)
$ passwd postgres
$ password: 비밀번호 설정
su - postgres 로그인 성공하면 끝이다.
# postgresql 초기화
$ sudo service postgresql initdb
# 서버기동시 자동으로 서비스 시작설정
$ sudo chkconfig postgresql on
# 서버기동
$ sudo service postgresql restart
# 유저추가 (postgres로 로그인)
$ su - postgres
$ createuser 유저명
# 새로 추가한 유저로 로그인되도록 설정 변경
# pg_hba.conf의 맨 밑에 추가한다.
$ sudo vi /var/lib/pgsql/data/pg_hba.conf
> host all all 127.0.0.1/32 iden //주석처리
> host all all 127.0.0.1/32 md5 //추가
> host all all ::1/128 ident //주석처리
> host all all ::1/128 md5 //추가
반응형