OS
rocky linux 9 초기 설정
- 비아웹 오래 전 2024.08.30 15:46 인기
-
- 685
- 0
안녕하세요
호스팅 전문기업 비아웹입니다.
rocky linux 9 minimal 설치 후 사용 편의성을 위한 초기 설정 내역 정리합니다.
# selinux disable 설정
sed -i 's/^SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
# ifconfig 활성화
dnf install -y net-tools
# Timezone 설정
timedatectl set-timezone Asia/Seoul
# wget 설치
dnf install -y wget
# vim 설치
dnf install -y vim-enhanced
# sar 활성화
dnf install -y sysstat
# rsync 설치
dnf install -y rsync
# lsof 설치
dnf install -y lsof
# atop 설치
dnf install -y atop
# tar, unzup 설치
dnf install -y tar unzip
# firewalld 중지
systemctl disable firewalld --now
# iptables 활성화
dnf install -y epel-release
dnf install -y iptables-services iptables-utils
systemctl enable iptables
systemctl start iptables
서버 운영시 필요한 명령어와 Selinux 중지, 모니터링을 위한 atop, firewalld 중지 및 iptables 설치에 대해 정리 하였습니다.
필요한 부분 적용하셔서 사용하시기 바랍니다.
감사합니다.
호스팅 전문기업 비아웹
- 이전글Rocky Linux 9 iptables geoip(db-ip.com) 연동2024.08.30
- 다음글putty 를 이용한 SSH 터널링2024.08.30
댓글목록
등록된 댓글이 없습니다.