본문 바로가기

728x90
반응형

리눅스

(1600)
C264x200.fwebp.q85 CentOS 7에서 Kickstart 설치 및 구성하는 방법 CentOS 7에서 Kickstart 설치 및 구성하는 방법(V.201704)1. repository 디렉토리 생성필요한 디렉토리 생성mkdir -p /appdata/www/repository/{centos/6.9/{isos, os}/x86_64,centos/7.3/{isos, os}/x86_64}CentOS 7 ISO 마운트mount -t iso9660 -o loop /appdata/www/repository/centos/6/isos/x86_64/CentOS-6.9-x86_64-bin-DVD1.iso /mntISO 파일의 내용을 복사cp -fR /mnt/* /appdata/www/repository/centos/6/os/x86_64/.마운트 해제umount /mnt2. TFTP(Trivial File ..
C264x200.fwebp.q85 [기타] 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..
C264x200.fwebp.q85 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 실행 파일 디렉토리로 ..
C264x200.fwebp.q85 Scouter Host Agent 설치 Scouter Host Agent 설치Scouter 다운로드(https://github.com/scouter-project/scouter/releases)cd /apptar xvfz scouter.agent.tar.gzchown -R tomcat.tomcat /app/scouter su - tomcatvi .bashrc## JAVA_HOMEexport JAVA_HOME="/app/java"export PATH="$PATH:$JAVA_HOME/bin" cd /app/scouter/agent.host/confvi scouter.conf$ vi scouter.conf# Scouter Server IP Address (Default : 127.0.0.1)net_collector_ip=10.1.5.215 ./ho..
C264x200.fwebp.q85 [리눅스] 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..
C264x200.fwebp.q85 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...
C264x200.fwebp.q85 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 규..
C264x200.fwebp.q85 Recommended Hotfixes for XenServer Recommended Hotfixes for XenServerXenCenter를에서 XenServer 호스트에 핫픽스를 적용하는 방법(How to apply hotfix on XenServer host from XenCenter)https://support.citrix.com/article/CTX138373XenServer에서 권장 핫픽스(Recommended Hotfixes for XenServer)https://support.citrix.com/article/CTX138115#XenServer%207.0

728x90
반응형