[이전 내용 - RHEL 8 설치-1(OS 기본설정)]
[목차]
1. 네트워크 설정(IP, DNS설정)
2. hostname 설정
3. selinux 비활성화 설정
4. 패키지 및 레포지토리 설정
5. 시간 동기화
6. /etc/profile 설정
1. 네트워크 설정(IP, DNS설정)
※ /etc/sysconfig/network-scripts에 있는 ifcfg 파일에서 직접 수정하여 적용 가능하다.
1) nmtui를 활용하여 IP, DNS 설정
- 연결편집 클릭
- IP, DNS 정보입력, IPv6 비활성화 설정 적용 → 확인 → 종료
→ systemctl restart NetworkManager.service(네트워크 재시작)
2. hostname 설정
1) nmtui에서 hostname 설정 가능하다.
2) hostnamectl 명령어로 설정 가능하다.
hostnamectl set-hostname RHEL8-01(→ 호스트네임)
3. selinux 비활성화 설정
- 적용을 위해서는 리부팅 필요함
vi /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled (enforcing에서 disabled로 변경한다.)
# SELINUXTYPE= can take one of these three values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
4. EPEL 레포지토리 설정 & 패키지 설치
1) 레포지토리 설정
yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
yum clean all
yum repolist all
2) 필요한 패키지 설치
yum install strace wget net-tools chrony vim-enhanced lsof mlocate rpm-build make
yum update
5. 시간동기화
1) chrony를 이용위한 설치 (minimal에는 기본설치 되어 있지 않아 yum설치 한다.)
2) /etc/chrony.conf 내용 편집
vim /etc/chrony.conf
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
###pool 2.rhel.pool.ntp.org iburst <<<<<<<<<<<<<< 이 부분 주석처리
(아래 2줄 추가)
server time.bora.net iburst
server send.mx.cdnetworks.com iburst
3) chrony 재시작 및 동기화 확인(timddatectl)
systemctl restart chronyd.service
timedatectl
Local time: 수 2023-10-11 13:54:49 KST
Universal time: 수 2023-10-11 04:54:49 UTC
RTC time: 수 2023-10-11 03:54:10
Time zone: Asia/Seoul (KST, +0900)
System clock synchronized: yes
NTP service: active
RTC in local TZ: no
4) 하드웨어 시간을 OS시간에 맞춘다.
hwclock -w
6. /etc/profile 설정(프롬프트, alias 설정)
alias vi='vim'
PS1="\e[0m[\e[1;32m\t]\e[0m[\e[1;33m\u\e[0m@\e[1;36m\h\e[0m \w] \n\$ \[\033[00m\]"
[다음내용 RHEL 8 설치-2(OS 보안 설정)]
'Infra > OS' 카테고리의 다른 글
RHEL 8 설치-3(OS 보안 설정) (0) | 2023.10.11 |
---|---|
RHEL8 local repository 만들어보기 (0) | 2023.10.11 |
RHEL7 local repository 만들어보기(온라인 repo내용도 추가) (0) | 2023.10.11 |
RHEL 8 설치-1(OS 초반 세팅) (0) | 2023.10.10 |
RHEL 8 설치-0(OS설치 전 환경 세팅) (0) | 2023.10.10 |