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