반응형
# 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 //추가
반응형
'Linux' 카테고리의 다른 글
centos6 yum update 오류 해결 YumRepo Error yum error (0) | 2021.01.04 |
---|---|
좀비 프로세스 죽이기 defunct process (0) | 2020.09.15 |
PHP 5.3 이상 Zend Guard Loader 설치 (0) | 2019.11.02 |
CentOS7 vsftpd ftp 환경 에디트플러스(editplus)FTP 접속 오류 (0) | 2019.09.05 |
PHP 7.2 설치(업그레이드) [CentOS7 / remi RPM repository] (0) | 2019.06.20 |
댓글