IT/Database

[PostgreSQL] PostgreSQL 설치하기

lejh 2020. 11. 29. 13:49

PostgreSQL 설치 링크

 

www.postgresql.org/download/

 

PostgreSQL: Downloads

Downloads PostgreSQL Downloads PostgreSQL is available for download as ready-to-use packages or installers for various platforms, as well as a source code archive if you want to build it yourself. Packages and Installers Select your operating system family

www.postgresql.org

 

 

PostgreSQL 설치

OS 버전 선택

 

각 OS 버전 확인 후 Download the Installer 클릭

 

설치 버전 선택 후 다운로드 시작 (저는 10.14 Windows 64bit 선택 했습니다.)

 

설치 시작

Next 클릭

 

설치경로 선택(저는 기본 설정으로 진행 했습니다.), Next 클릭

 

Next 클릭

PostgreSQL  데이터가 저장되는 경로(저는 기본설정으로 진행 했습니다), Next 클릭

 

Postgre 시스템 관리자 비번 설정, Next 클릭

Postgre 포트 설정(기본 포트는 5432), Next 클릭

언어 셋 설정, Next 클릭

 

설치 상세정보 확인, Next 클릭

Next 클릭

 

설치 진행 중.....

 

체크 해제, Finish 클릭

 

 

외부 접속을 위한 Conf 설정

postgresql.conf 수정(PostgreSQL 10버전 이상 부터는 디폴트로 설정 되있습니다.)

listen_addresses = '*‘ 로 변경 

 

pg_hba.conf 수정(외부에서 접속 하려면 반드시 설정 필요)

“host    all             all             0.0.0.0/0            md5” 추가

 

 

PostgreSQL 설치 확인

pgAdmin 4 또는 SQL shell 실행

 

SQL Shell로 PostgreSQL 접속 화면

 

pgAdmin로 PostgreSQL 접속 화면