전체 글 144

./configure: error: the HTTP XSLT module requires the libxml2/libxsltlibraries. You can either do not enable the module or install the libraries.

nginx 설치를 진행하다 오류가 발생했다. ./configure: error: the HTTP XSLT module requires the libxml2/libxsltlibraries. You can either do not enable the module or install the libraries. 위와같은 error 발생시 yum -y install libxslt-devel 설치 완료후 다시 컴파일을 하면 해당오류는 넘어갈수있다.

리눅스/php 2020.11.03

snmp 소스설치

snmp 최신버전을 다운받는다 http://sourceforge.net/project/showfiles.php?group_id=12694&package_id=11571 [ net-snmp - Browse /net-snmp at SourceForge.net × sourceforge.net ](http://sourceforge.net/project/showfiles.php?group_id=12694&package_id=11571) #tar zxvf net-snmp-5.9.tar.gz #cd net-snmp-5.9 #./configure --prefix=/usr/local/snmp ## 도중 나오는 과정은 전부 enter ## #make && make install ## snmpd.conf 파일이없으므로 하나..

리눅스/기타 2020.09.29

apache-tomcat 연동 및 로드벨런싱

apache 2.4 tomcat 8.5.56 1. apache 2.4 설치 http://httpd.apache.org/download.cgi 에서 다운로드 2. JAVA 설치 https://www.oracle.com/java/technologies/javase-downloads.html 에서 다운로드 3. tomcat 8.5.56 설치 https://tomcat.apache.org/download-80.cgi 다운로드 4. apache mod_jk 설치 http://tomcat.apache.org/download-connectors.cgi 해당 링크에서 tomcat-connetors 다운로드 한뒤 apache 모듈 추가 5. apache conf 설정 #vi httpd.conf LoadModule jk_..

리눅스/apache 2020.09.16

postgres12 ha 구성방법

설치 환경 10.1.0.4 master 10.1.0.5 slave 1. 서로간 연결 설정(master_server) #vi postgresql.conf listen_addresses = '*' 위와같이 수정한다. 2. 리플리케이션 유저 생성(master_server) #su – postgres $ createuser --replication -P -e replicator 3.slave서버를 연결할 설정을 해준다.(master_server) $vi pg_hba.conf host replication replicator 10.1.0.5/24 md5 4.master 서버의 데이터를 가져온다(slave_server) $pg_basebackup -h 10.1.0.4 -D /home/postgres/pgsql/da..

리눅스/기타 2020.09.15

postgresql 소스설치

postgreSQL 다운로드 다운로드는 공식 홈페이지인 https://www.postgresql.org/download/ 받을 수 있습니다. 또는 아래처럼 wget 명령어를 사용하여 다운로드 받을 수도 있습니다. [root@Centos7 ~]# wget https://ftp.postgresql.org/pub/source/v9.4.0/postgresql-9.4.0.tar.gz limits.conf 파일에 내용 추가 /etc/security/limits.conf 파일을 수정합니다. 아래처럼 postgres 사용자에 대한 설정 값을 입력해줍니다. [root@Centos7 ~]# vi /etc/security/limits.conf postgres soft nofile 65535 postgres hard nofi..

리눅스/기타 2020.09.07