목록전체 글 (64)
+1-1+1-1+1-1+1-1...
설치 환경 : RedHat Linux 7.3 ※ Yum 설치도 가능하나 최진 버전을 설치하려면 컴파일 설치를 해야함 1. 설치전 필요한 util 설치 [root@localhost /]# yum -y install make gcc perl pcre-devel zlib-devel openssl-devel ...... Installed: gcc.x86_64 0:4.8.5-44.el7 openssl-devel.x86_64 1:1.0.2k-21.el7_9 pcre-devel.x86_64 0:8.32-17.el7 zlib-devel.x86_64 0:1.2.7-18.el7 Dependency Installed: cpp.x86_64 0:4.8.5-44.el7 glibc-devel.x86_64 0:2.17-317.el7..
- 서버 구성 Linux - CentOS 7.3 ( Apache ) MASTER : 192.168.60.6/24 BACKUP : 192.168.60.7/24 VLAN : 192.168.60.8 ( keepalived ) 1. MASTER, BACKUP 서버 초기 설정 [root@localhost ~]# vi /etc/sysctl.conf # sysctl settings are defined through files in # /usr/lib/sysctl.d/, /run/sysctl.d/, and /etc/sysctl.d/. # # Vendors settings live in /usr/lib/sysctl.d/. # To override a whole file, create a new file with the..
MariaDB 서버 : 192.168.60.15 Clinet IP : 192.168.60.5 1. MariaDB 접속 [root@localhost mysql]# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 22 Server version: 10.4.17-MariaDB MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input..
1. Yum Repository 등록 [root@localhost yum.repos.d]# vi /etc/yum.repos.d/MariaDB.repo [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.4/centos7-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1 [root@localhost yum.repos.d]# yum repolist Loaded plugins: product-id, search-disabled-repos, subscription-manager This system is not registered to Red Hat Subscription Manage..
네트워크 서비스를 재시작하거나, 리부팅하면 설정된 /etc/sysconfig/network-script/ifcfg-XX 파일과 /etc/resolve.conf 파일이 변경되는 증상이 나타남 resolv.conf 파일에 변경된 내용을 보니 'generated by Network Mangger'라는 문구가 박혀있어서 해당 항목을 찾아보니 '자동으로 최대 사용가능한 연결에 네트워크 연결을 스위치 하는 데몬' 이라고 나옴 해당 데몬이 실행 되지 않도록 아래 명령 실행 후 증상 해소 Network Manager 데몬 러닝 상태 확인 [root@localhost ~]# systemctl status NetworkManager ● NetworkManager.service - Network Manager Loaded:..
웹서버 방화벽을 아래와 같이 해제 [root@localhost httpd]# firewall-cmd --permanent --add-service=http 클라이언트에서 Telnet 테스트 결과 - 실패 [root@lottelab ~]# telnet 192.168.60.11 80 Trying 192.168.60.11... telnet: connect to address 192.168.60.11: No route to host No route to Host 에러 > NAT 네트워크 환경에 오류로 확인, 구글 서치 결과 masquerade 옵션 no일 경우 발생한다고 함 현재 firewall 설정 상태 확인 결과 masqerade 옵션 no 임 [root@localhost httpd]# firewall-cm..
netstat 명령 활용 통신 지연 - 아래 결과 값에서 Recv-Q (수신 큐)와 Send-Q (송신 큐)에 값이 해소되지 않는 경우 > netstat -an | egrep ":80 |:443" | grep "ESTABLISHED" Proto Recv-Q Send-Q Local Address Foreign Address State tcp6 0 0 111.111.111.111:443 172.16.62.1:40511 ESTABLISHED
설치 언어 설정 파티션 설정 네트워크 세팅 1) 외부 인터넷 접속을 위한 네트워크 Adapter 설정 2) VM간 전용 통신 네트워크 Adapter 설정 설치 시작 1) root 계정 암호 설정 root 계정 로그인 호스트 어댑터 네트워크 RemoteNG 접속을 위한 설정 파일 임시 수정 1) vi 실행 > /etc/sysconfig/network-scripts/ifcfg-enp0s8 -> 설치치 호스트 전용 어뎁터 인터 페이스 이름 2) 편집 > BOOTPROTO : DHCP -> none , IPADDR 추가, ONBOOT : no -> yes 3) 네트워크 재시작 4) 변경 사항 확인 mRemoteNG 프로그램 실행, SSH 접속 세팅 호스트 어댑터 네트워크 설정 파일 최종 수정 : DHCP -> ..