OS/Linux
-
RHEL (Redhat) 8 - nmon 설치OS/Linux 2023. 1. 12. 13:54
RHEL에서 앞서 repository를 설치 iso로 구성하였을 때 nmon 설치가 불가능하다. [root]# dnf -y install nmon Updating Subscription Management repositories. Unable to read consumer identity This system is not registered with an entitlement server. You can use subscription-manager to register. Last metadata expiration check: 1:05:29 ago on Thu Jan 12 12:28:39 2023. No match for argument: nmon Error: Unable to find a match: ..
-
RHEL (Redhat Enterprise Linux 8) 8.5 local repo 설정OS/Linux 2023. 1. 12. 12:15
1. local repository 생성 Redhat Linux 를 설치한 ISO 파일을 root로 복사 예 -rw-r--r-- 1 root root 10975444992 Nov 23 2021 rhel-8.5-x86_64-dvd.is 2. 복사한 iso mount mount -t iso9660 -o loop /root/rhel-8.5-x86_64-dvd.iso /media 3. repository 디렉토리 생성 mkdir /repository 4. iso에서 복사 cp -a /media/* /repository/ 5. repo 내용 작성 vi /etc/yum.repos.d/RHEL8.repo [InstallMedia-BaseOS] name=RHEL 8 - BaseOS metadata_expire=-1 g..
-
Linux 특정 Port 열기 (닫기)OS/Linux 2017. 9. 26. 18:22
특정 포트를 사용하는데 접속이 안될 경우 포트를 열어줄 필요가 있음 확인하기 nc -z 192.168.0.2 21 --> 성공 Connection to 192.168.0.2 21 port [tcp/ftp] succeeded! --> 실패시 출력 없음 포트 열기 iptables -A INPUT -p tcp --dport 1521 -j ACCEPT 포트 닫기 iptables -D INPUT -p tcp --dport 1521 -j ACCEPT 적용하기 service iptables save service iptables restart