- openldap
- perplexity
- data-door
- web&was apche htaccess
- 웰카
- MotD
- drbd
- wildfly jboss
- dell
- snmp
- CentOS
- n15148
- RHEL8
- mariadb
- etcd
- Network
- vmware
- admin port
- maxscale
- Galera Cluster
- port description
- docker
- unix_socket
- n1548
- mgmtip
- banner
- Auth
- Kubernetes
- 우파푸른하늘
- CEP
- Path
- 우파푸른하늘80만이벤트
- Storage
목록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 \ ..