PostgreSQL 은 인기있는 오픈소스 데이터베이스 시스템 입니다. PostgreSQL 9.0 으로 넘어오면서 ‘Hot Stand by Replication’ 기능을 제공하게 되는등 많은 변화가 있었습니다. 이 문서는 CentOS 7 배포판에서 PostgreSQL 설치에 대한 것입니다. 1. 준비 다음의 패키지가 설치되어 있어야 합니다.
1 |
yum install gcc.x86_64 gcc-c++.x86_64 wget.x86_64 bzip2-devel.x86_64 pkgconfig.x86_64 openssl-devel.x86_64 make.x86_64 man.x86_64 nasm.x86_64 gmp.x86_64 gdbm-devel.x86_64 readline-devel.x86_64 compat-readline43.x86_64 ncurses-devel.x86_64 db4-devel.x86_64 automake* autoconf* pcre-devel.x86_64 -y |
2. Download and Unpack
1 2 3 4 |
cd /usr/src wget http://ftp.postgresql.org/pub/source/v9.4beta2/postgresql-9.4beta2.tar.bz2 tar xjf postgresql-9.4beta2.tar.bz2 cd postgresql-9.4beta2 |
3. Configure and Compile and Install 필요한 기능이 무엇인지를 고민해 봅시다. 많은 기능들을 제공하지만 대략적으로 다음과 같은 기능을 제공하는 것이 좋습니다. plpython => python-devel.x86_64 pltcl => tcl-devel.x86_64 plperf => perl-devel.x86_64 ssl => openssl-devel.x86_64 pam => pam-devel.x86_64 […]