최신 EX200 Korean 무료덤프 - RedHat Red Hat Certified System Administrator - RHCSA (EX200 Korean Version)

YUM 소스가 제공되었습니다.
http://instructor.example.com/pub/rhel6/dvd
시스템을 구성하면 정상적으로 사용할 수 있습니다.
정답:
/etc/yum.repos.d/base.repo
[base]
name=base
baseurl=http://instructor.example.com/pub/rhel6/dvd
gpgcheck=0
yum list
192.168.0.0/24와 192.168.1.0/24라는 두 개의 다른 네트워크가 있습니다. 192.168.0.254와
192.168.1.254 IP 주소가 서버에 할당되었습니다. 192.168.1.0/24 네트워크의 호스트에 ping을 보내 네트워크 설정을 확인하세요.
정답:
vi /etc/sysconfing/network NETWORKING=yes HOSTNAME=station?.example.com GATEWAY=192.168.0.254 service network restart
2.vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=X.X.X.X
NETMASK=X.X.X.X
GATEWAY=192.168.0.254
ifdown eth0
ifup eth0
기본 저장소를 사용하도록 시스템을 구성합니다.
YUM 저장소는 http://content/rhel9.0/x86_64/dvd/BaseOS 및 http://content/rhel9.0/x86_64/dvd/AppStream에서 사용할 수 있습니다. 이러한 위치를 기본 저장소로 사용하도록 시스템을 구성합니다.
정답:
[root@node1 ~]# vim /etc/yum.repos.d/rhcsa.repo
[Base]
name=Base
baseurl=http://content/rhel9.0/x86_64/dvd/BaseOS
enabled=1
gpgcheck=no
[App]
name=App
baseurl=http://content/rhel9.0/x86_64/dvd/AppStream
enabled=1
gpgcheck=no
# Verification
[root@node1 ~]# yum repoinfo
[root@node1 ~]# yum -y install vsftpd
시스템에서 FTP 서비스를 구성하고 익명 로그인에 대한 원격 액세스를 허용하고 이 서비스를 통해 프로그램을 다운로드합니다. 시스템이 재부팅된 후에도 서비스가 계속 실행 중입니다.
정답:
yum install vsftpd
/etc/init.d/vsftpd start
chkconfig vsftpd on
autofs를 구성하여 로그인이 성공적으로 완료된 후 홈 디렉토리 autofs가 있는지 확인합니다. 이 디렉토리는 /rhome/ldapuser40으로 공유되며 ip: 172.24.40.10에서 실행됩니다. 또한 다른 LDAP 사용자도 홈 디렉토리를 정상적으로 사용할 수 있어야 합니다.
정답:
# chkconfig autofs on
# cd /etc/
# vim /etc/auto.master
/rhome /etc/auto.ldap
# cp auto.misc auto.ldap
# vim auto.ladp
ldapuser40 -rw,soft,intr 172.24.40.10:/rhome/ldapuser40
* -rw,soft,intr 172.16.40.10:/rhome/&
# service autofs stop
# server autofs start
# showmount -e 172.24.40.10
# su - ladpuser40
당신은 새로운 시스템 관리자이고 지금부터 시스템을 관리하게 될 것이고 당신의 주요 업무는 네트워크 모니터링, 백업 및 복원입니다. 하지만 루트 비밀번호를 모릅니다. 루트 비밀번호를 redhat으로 변경하고 기본 Runlevel로 로그인합니다.
정답:
When you Boot the System, it starts on default Runlevel specified in /etc/inittab:
Id:?:initdefault:
When System Successfully boot, it will ask for username and password. But you don't know the root's password. To change the root password you need to boot the system into single user mode. You can pass the kernel arguments from the boot loader.
1. Restart the System.
2. You will get the boot loader GRUB screen.
3. Press a and type 1 or s for single mode ro root=LABEL=/ rhgb queit s
4. System will boot on Single User mode.
5. Use passwd command to change.
6. Press ctrl+d
웹 서비스를 구성하고 http://instructor.example.com/pub/serverX.html에서 다운로드하세요. 그리고 시스템을 재부팅한 후에도 해당 서비스는 계속 실행 중이어야 합니다.
정답:
cd /var/www/html
wget http://instructor.example.com/pub/serverX.html mv serverX.html index.html /etc/init.d/httpd restart chkconfig httpd on
NTP를 구성합니다.
NTP 서비스 구성, 서버 시간 동기화, NTP 서버: classroom.example.com
정답:
Configure the client:
Yum -y install chrony
Vim /etc/chrony.conf
Add: server classroom.example.com iburst
Start: systemctl enable chronyd
systemctl restart chronyd
Validate: timedatectl status
부팅 시 자동으로 적용되는 2G 스왑 파티션을 생성하면 원래 스왑 파티션에 영향을 미치지 않습니다.
정답:
# fdisk /dev/sda
p
(check Partition table)
n
(create new partition: press e to create extended partition, press p to create the main partition, and the extended partition is further divided into logical partitions) Enter
+2G
t
l
W
partx -a /dev/sda
partprobe
mkswap /dev/sda8
Copy UUID
swapon -a
vim /etc/fstab
UUID=XXXXX swap swap defaults 0 0
(swapon -s)
사용자 인증은 192.168.0.254의 ldap 도메인에서 제공되었습니다. ldapuser를 얻으려면 다음 요구 사항에 따라야 합니다.
-LdapuserX는 시스템에 로그인할 수 있어야 하며, X는 호스트 이름 번호입니다. 하지만 ldapuser의 홈 디렉토리는 autofs 서버에서 자동으로 마운트할 때까지 마운트할 수 없습니다.
- 모든 LDAP 사용자의 비밀번호는 "password"입니다.
정답:
system-config-authentication &

우리와 연락하기

문의할 점이 있으시면 메일을 보내오세요. 12시간이내에 답장드리도록 하고 있습니다.

근무시간: ( UTC+9 ) 9:00-24:00
월요일~토요일

서포트: 바로 연락하기