1. 시스템 업데이트
[root@localhost smoh]# yum -y update
2. PostgreSql 설치
[root@localhost smoh]# yum list postgresql*
[root@localhost smoh]# yum install postgresql-server
3. 설치 확인
[smoh@localhost ~]$ postgres -V
4. PostgreSql초기화
[root@localhost /]# postgresql-setup initdb
5. PostgreSql Start
[root@localhost /]# systemctl enable postgresql.service
[root@localhost /]# systemctl start postgresql.service
6. 동작확인
[root@localhost data]# systemctl status postgresql
반응형
'Programming > Databse' 카테고리의 다른 글
[PostgreSql] 기본 쿼리 (0) | 2017.06.15 |
---|---|
[PostgreSql] 유저 및 데이터베이스 생성 (0) | 2017.06.15 |
[PostgreSql] 윈도우서버에서 PostgreSql 외부 접속 허용 (0) | 2017.06.14 |
[Database] 실행 계획 분석 (0) | 2017.03.17 |
[Oracle] 대소문자 변환 (0) | 2017.03.07 |