목록2022/08/04 (2)
전산쟁이의 기억노트
패키지 설치진행 db실행 사용자 및 data 디렉토리 생성 $> useradd psql $> mkdir /home/data $> chown -R psql: /home/data source 파일 다운로드 $> wget https://ftp.postgresql.org/pub/source/v9.4.26/postgresql-9.4.26.tar.gz --no-check-certificate depencency 패키지 설치 $> yum install \ readline-devel \ zlib-devel \ openssl-devel \ tcl-devel -y 컴파일 후 설치진행 $> ./configure --prefix=/usr/local/psql --with-openssl --with-tcl $> make -j 4..
설치정보 Postgressql : 9.2.4 OS : Centos 5.10 postgressql 컴파일때 필요한 패키지 설치 $> yum -y install compat-readline43 readline-devel crypto-utils.* openssl* readline-devel pam-devel 압축 해제하고 , 컴파일 -> 설치 들어가기 $> tar -zxvf postgresql-9.2.4.tar.gz $> cd postgresql-9.2.4 ./configure \ --enable-nls=’ko’ \ --enable-depend \ --enable-thread-safety \ --mandir=/usr/share/man \ --with-includes=/usr/include \ ..