본문 바로가기

반응형

리눅스

C276x260 [리눅스] 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.. 더보기
C276x260 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... 더보기
C276x260 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 규.. 더보기
C276x260 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 더보기
C276x260 Citrix XenServer에서 호스트 이름을 변경하는 방법 Citrix XenServer에서 호스트 이름을 변경하는 방법1. 현재 XenServer 호스트 목록 확인XenServer 호스트의 현재 UUID와 이름을 확인합니다.xe host-list[root@xenserver-woaicbud ~]$ xe host-listuuid ( RO) : 232407a8-fe8b-4574-842e-b5f2b2123b50 name-label ( RW): mgt-xenserver01 name-description ( RW): Default installUUID : 232407a8-fe8b-4574-842e-b5f2b2123b50호스트 이름 : mgt-xenserver012. 호스트 이름 변경XenServer CLI에서 xe host.. 더보기
C276x260 [리눅스] GitLab root 초기 비밀번호 GitLab root 초기 비밀번호 - GitLab Version : 14.4.2 gitlab 로그 중간에 출력 docker-compose logs -f $ docker-compose logs -f ... gitlab | Notes: gitlab | Default admin account has been configured with following details: gitlab | Username: root gitlab | Password: You didn't opt-in to print initial root password to STDOUT. gitlab | Password stored to /etc/gitlab/initial_root_password. This file will be cleaned .. 더보기
C276x260 [리눅스] nginx tomcat 설치 및 연동 nginx tomcat 설치 및 연동 테스트 환경 $ lsb_release -a No LSB modules are available. Distributor ID:Ubuntu Description:Ubuntu 22.04.1 LTS Release:22.04 Codename:jammy nginx 설치 nginx repository 등록 echo "deb http://nginx.org/packages/ubuntu `lsb_release -cs` nginx" \ | sudo tee /etc/apt/sources.list.d/nginx.list curl -fsSL https://nginx.org/keys/nginx_signing.key | sudo apt-key add - apt update nginx 패키지 설치.. 더보기
C276x260 [리눅스] Tomcat 시스템 프로토콜 변경(http -> https) Tomcat 시스템 프로토콜 변경(http -> https) pasdev.scbyun.com.pfx 인증서 패스워드 : 1234 기본 keystore 패스워드 : changeit 1. pfx를 jks로 변환 후 keystore에 저장 keytool -importkeystore -srckeystore /home/anti1346/pasdev.scbyun.com.pfx -srcstoretype pkcs12 -destkeystore /usr/lib/jvm/java-7-oracle/jre/lib/security/cacerts -deststoretype JKS $ keytool -importkeystore -srckeystore /home/anti1346/pasdev.scbyun.com.pfx -srcstorety.. 더보기

728x90
반응형