인터넷이 되는 환경에서 PostgreSQL(9.6.2)와 PostGIS(2.3.2)를 설치하는 절차입니다.
PostgreSQL 9.6.2 설치
1. PostgreSQL과 PostGIS 설치를 위한 yum 저장소 업데이트
rpm -Uvh https://yum.postgresql.org/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm
2. PostgreSQL 설치
yum install postgresql96-server postgresql96
3. 데이터베이스 저장소 생성
./postgresql96-setup initdb
4. PostgreSQL 서비스 실행
systemctl enable postgresql-9.6
systemctl enable postgresql-9.6.service
systemctl start postgresql-9.6.service
5. 방화벽에서 port 5432번 개방
firewall-cmd --zone=public --add-port=5432/tcp
6. 외부에서 DBMS 접근 허용 설정
vi postgresql.conf
아래처럼 편집
listen_addresses = "*"
7. postgres 사용자 암호 설정
su - postgres
psql
\password postgres
\q
8. 이전 사용자로 복귀su - root
9. 외부 접속을 위한 보안설정 변경
vi pg_hba.conf
아래처럼 편집
local all all peer 문자열을 local all all md5 로 변경
host all all 127.0.0.1/32 ident 문자열을 host all all 0.0.0.0/0 md5 로 변경
host all all ::1/128 ident 문자열을 host all all ::1/128 md5 로 변경
10. PostgreSQL 서비스 재기동
systemctl stop postgresql-9.6.service
systemctl start postgresql-9.6.service
11. [2017-07-08 추가] UUID 확장 기능 설치를 위해 다음 명령이 필요함
systemctl stop postgresql-9.6.service
yum install postgresql96-contrib.x86_64
systemctl start postgresql-9.6.service
PostGIS 설치
yum install epel-release
yum install postgis2_96.x86_64
systemctl restart postgresql-9.6.service
'OS > Linux' 카테고리의 다른 글
How to install Google Drive on Linux Mint 18.1, 18.2 (0) | 2019.07.27 |
---|---|
[Linux] Cached Memory 비우고 Free Memory 늘리기 (0) | 2019.07.14 |
CentOS 7 방화벽 해제 (0) | 2019.02.16 |
CentOS에 Python 3.x 설치하는 방법 20 Feb 2018 | Python (0) | 2019.02.16 |
우분투 키보드 리매핑하기 (백슬래쉬 백스페이스 변경) (0) | 2019.02.01 |