1. CentOS 5.x 에서 yum 으로 설치할려면 8.3 이 최신이다. 그래서 repository를 업데이트 해줘야 한다.
- http://yum.postgresql.org 에 가서 버전에맞는 repository package 를 받아서 설치한다.
- rpm -ivh pgdg-centos93-9.3-1.noarch.rpm
2. 1번작업이 완료되었으면 PostgreSQL 을 설치한다.
- yum install postgresql93 postgresql93-server
3. DB initaalize
- /etc/init.d/postgresql-9.3 initdb -D /var/lib/pgsql/data
4. PostgreSQL service 등록
- chkconfig --add /etc/rc.d/init.d/postgresql-9.3
- chkconfig postgresql-9.3 on
5. 서비스 시작하기
- /etc/init.d/postgresql-9.3 start
- /etc/init.d/postgresql-9.3 stop
[Postgres] Backup & Restore 백업과 복구 (0) | 2014.01.06 |
---|---|
[PostgreSQL] Linux/PostgreSQL 외부 접속 설정 하기 (0) | 2013.11.25 |
댓글 영역