본문 바로가기

728x90

리눅스

Ansible을 설치하고 구성하는 방법 Ansible을 설치하고 구성하는 방법 1. EPEL 패키지 설치 EPEL은 Extra Packages for Enterprise Linux의 약어로 여러 추가 소프트웨어를 제공합니다. sudo yum install epel-release 2. Ansible 패키지 설치 sudo yum install ansible 3. Ansible 버전 확인 ansible --version ansible 2.2.1.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides 4. SSH Keygen 설정 ssh-keygen -t rsa -b 4096 -C "root@ass01" 5. Ansible 키 교환 us.. 더보기
[기타] GeoIP database update GeoIP database update1. GeoIP 데이터베이스 디렉터리로 이동sudo mkdir -p /usr/share/GeoIP2. GeoIP 데이터베이스 다운로드wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz \ -O /usr/share/GeoIP/GeoIP.dat.gz3. GeoIP 데이터베이스 파일 압축 해제압축 파일(GeoIP.dat.gz)을 /usr/share/GeoIP 디렉터리로 이동하고 압축을 해제합니다.cd /usr/share/GeoIPgzip -d GeoIP.dat.gz압축 해제 후 GeoIP.dat 파일이 /usr/share/GeoIP 디렉터리에 존재해야 합니다.$ lsGeoIP.. 더보기
CentOS 7에 NGINX와 Tomcat 멀티 인스턴스를 설치하고 설정하는 방법 CentOS 7에 NGINX와 Tomcat 멀티 인스턴스를 설치하고 설정하는 방법1. nginx 설치필수 패키지 설치yum install pcre-devel zlib-devel openssl-devel디렉토리 생성 및 이동mkdir /appcd /app/Nginx 소스 코드 압축 해제tar xvfz nginx-1.10.3.tar.gzNginx 소스 디렉토리로 이동cd nginx-1.10.3Nginx 구성 설정./configure --prefix=/app/nginx --with-http_ssl_module --with-http_gzip_static_module --with-http_stub_status_moduleNginx 컴파일 및 설치make && make installNginx 실행 파일 디렉토리로 .. 더보기
[리눅스] Scouter Host Agent 설치 Scouter Host Agent 설치 Scouter 다운로드(https://github.com/scouter-project/scouter/releases) cd /app tar xvfz scouter.agent.tar.gz chown -R tomcat.tomcat /app/scouter su - tomcat vi .bashrc ## JAVA_HOME export JAVA_HOME="/app/java" export PATH="$PATH:$JAVA_HOME/bin" cd /app/scouter/agent.host/conf vi scouter.conf $ vi scouter.conf # Scouter Server IP Address (Default : 127.0.0.1) net_collector_ip=10... 더보기
[리눅스] Scouter Server 설치 Scouter Server 설치 scouter 다운로드(https://github.com/scouter-project/scouter/releases) cd /app tar xvfz scouter.server.tar.gz vi /app/scouter/server/conf/scouter.conf # Agent Control and Service Port(Default : TCP 6100) net_tcp_listen_port=6100 # UDP Receive Port(Default : 6100) net_udp_listen_port=6100 # DB directory(Default : ./database) db_dir=/app/scouter/server/database # Log directory(Default.. 더보기
OpenSSL을 소스 코드를 사용하여 컴파일하고 업그레이드하는 방법 OpenSSL을 소스 코드를 사용하여 컴파일하고 업그레이드하는 방법 다운로드 링크(https://www.openssl.org/source/) 1. OpenSSL 소스 코드 다운로드 및 압축 해제 wget https://www.openssl.org/source/openssl-1.1.0e.tar.gz tar xvfz openssl-1.1.0e.tar.gz 2. 컴파일 및 설치 cd openssl-1.1.0e ./config make make install which openssl $ which openssl /usr/local/bin/openssl 3. 라이브러리 등록 export LD_LIBRARY_PATH=/usr/local/lib64 (or) ln -s /usr/local/lib64/libssl.so... 더보기
iptables 에러 iptables 에러 $ service iptables start iptables: No config file. [주의] "iptables: No config file" 오류는 iptables가 설정 파일을 찾지 못할 때 발생합니다. 1. 설정 파일 확인(config file 확인) iptables 설정 파일이 있는지 확인하세요. 대부분의 시스템에서는 /etc/sysconfig/iptables를 사용합니다. ls /etc/sysconfig/iptables 2. 설정 파일 생성 설정 파일이 없는 경우 새로운 설정 파일을 생성할 수 있습니다. touch /etc/sysconfig/iptables (또는) sudo iptables-save > /etc/sysconfig/iptables 현재 iptables 규.. 더보기
Recommended Hotfixes for XenServer Recommended Hotfixes for XenServer XenCenter를에서 XenServer 호스트에 핫픽스를 적용하는 방법(How to apply hotfix on XenServer host from XenCenter) https://support.citrix.com/article/CTX138373 XenServer에서 권장 핫픽스(Recommended Hotfixes for XenServer) https://support.citrix.com/article/CTX138115#XenServer%207.0 더보기

반응형