EX200日本語 無料問題集「RedHat Red Hat Certified System Administrator - RHCSA (EX200日本語版)」

SELinuxは強制モードで実行する必要があります。
正解:
/etc/sysconfig/selinux
SELINUX=enforcing
パート1(Node1サーバー上)
タスク1 [ネットワークの管理]
提供された値を使用して、既存のインターフェース(enp1s0)との新しいネットワーク接続を作成してください。
IPv4:172.25.X.10 / 255.255.255.0(Xはドメイン番号:Domain15)ゲートウェイ:172.25.X.2 DNSサーバー:172.25.X.2次のセカンダリIPアドレスを現在実行中の接続に静的に追加します。既存の設定を損なうことのない方法でこれを行います。
IPv4:10.0.0.5/24およびホスト名node1.domain15.example.comを設定します
正解:
* [root@node1 ~]# nmcli connection show
[root@node1 ~]# nmcli connection add con-name static ifname enp1s0 type ethernet ipv4.addresses 172.25.15.10/24 ipv4.gateway 172.25.15.2 ipv4.dns 172.25.15.2
[root@node1 ~]# nmcli connection modify static ipv4.method manual connection.autoconnect yes
[root@node1 ~]# nmcli connection modify static +ipv4.addresses 10.0.0.5/24
[root@node1 ~]# nmcli connection up static
[root@node1 ~]# nmcli connection show
[root@node1 ~]# hostnamectl set-hostname node1.domain15.example.com
[root@node1 ~]# hostnamectl status
[root@node1 ~]# nmcli connection down static
* [root@node1 ~]# nmcli connection up static
[root@node1 ~]# ip addr show
[root@node1 ~]# reboot
### For checking ###
[root@node1 ~]# ip addr show
[root@node1 ~]# netstat -nr
[root@node1 ~]# cat /etc/resolv.conf
ファイル検索。
jackが所有するファイルを見つけ、それらをディレクトリ/ root / findresultsにコピーします
正解:
mkdir/root/findfiles
find / -user jack -exec cp -a {} /root/findfiles/ \; ls /root/findresults
ファイル/ usr / share / dict / wordsで、文字列seismicを含むすべての行を見つけます。ファイル/ root / wordlistにこれらすべての行のコピーを元の順序で配置します。 / root / wordlistには空の行を含めないでください。また、すべての行は/ usr / share / dict / wordsの元の行の正確なコピーでなければなりません。
正解:
grep seismic /usr/share/dict/words> /root/wordlist
タスクを構成します。毎日14:23にecho helloコマンドを実行するように計画します。
正解:
# which echo
# crontab -e
23 14 * * * /bin/echo hello
# crontab -l (Verify)
サイズ100MBのパーティションを1つ作成し、データにマウントします。
正解:
1. Use fdisk /dev/hda to create new partition.
2. Type n For New partitions.
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
5. Type the Size: +100M you can specify either Last cylinder of size here.
6. Press P to verify the partitions lists and remember the partitions name.
7. Press w to write on partitions table.
8. Either Reboot or use partprobe command.
9. Use mkfs -t ext3 /dev/hda?
OR
mke2fs -j /dev/hda? To create ext3 filesystem.
vi /etc/fstab
Write:
/dev/hda? /data ext3 defaults 1 2
Verify by mounting on current Sessions also: mount /dev/hda? /data
起動時に自動的に有効になる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
8 I
82
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)
5のkmcrl値を開き、/ proc / cmdlineで確認できます
正解:
# vim /boot/grub/grub.conf
kernel/vmlinuz-2.6.32-71.el6.x86_64 ro root=/dev/mapper/GLSvg-GLSrootrd_LVM_LV=GLSvg/GLSroot rd_LVM_LV=GLSvg/GLSswaprd_NO_LUKSrd_NO_MDrd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us crashkernel=auto rhgb quiet kmcrl=5 Restart to take effect and verification:
# cat /proc/cmdline
ro root=/dev/mapper/GLSvg-GLSroot rd_LVM_LV=GLSvg/GLSroot rd_LVM_LV=GLSvg/GLSswap rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet kmcrl=5
ftp://instructor.example.com/pub/updatesからカーネルを更新します。
次の要件に従って:
*システムの再起動後、更新されたカーネルがデフォルトのカーネルとして存在する必要があります。
*元のカーネルはまだ存在し、システムで利用可能です。
正解:
rpm -ivh kernel-firm...
rpm -ivh kernel...
www.rhce.comという名前のドメインに関連付けられているIPアドレスは192.100.0.2です。暗号化通信用のSSLを実装して、Apache Webサーバーを構成します。
正解:
vi /etc/httpd/conf.d/ssl.conf <VirtualHost 192.100.0.2> ServerName www.rhce.com DocumentRoot /var/www/rhce DirectoryIndex index.html index.htm ServerAdmin [email protected] SSLEngine on SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key </VirtualHost> cd /etc/httpd/conf
3 make testcert
Create the directory and index page on specified path. (Index page can download from ftp://server1.example.com at exam time) service httpd start|restart chkconfig httpd on Apache can provide encrypted communications using SSL (Secure Socket Layer). To make use of encrypted communication, a client must request to https protocol, which is uses port 443. For HTTPS protocol required the certificate file and key file.

弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡