RHCSA - 模擬考 - 設定 AutoFS
355 words
One minute
題目
在 Server B 上設定 :
- 安裝 nfs-utils 套件。
- 創建目錄 /shares ,並且在 export 上分享該目錄。
- 防火牆開放 tcp/nfs。
在 Server A 上設定 :
- 安裝 nfs-utils。
- 安裝 autofs。
- 創建目錄 /rhome 目錄。
- 透過 autofs 將 serverb:/shares 目錄掛載至 /rhome/shares,並且開機後自動掛載。
提示
- 驗證完畢後至 Basation 主機上執行 rht-vmctl reset servera,重置 servera 及serverb 機器,避免影響後續 LAB 操作。
參考作法
- man 相關手冊 -> auto.master 、 autofs、 mount、 firewall-cmd。
參考解答
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# ServerB 設定
[root@serverb ~]# yum install -y nfs-utils
[root@serverb ~]# systemctl enable --now nfs-server.service
[root@serverb ~]# mkdir -p /shares
[root@serverb ~]# cat >> /etc/exports << EOF
> /shares *(rw,sync)
> EOF
[root@serverb ~]# systemctl restart nfs-server.service
[root@serverb shares]# firewall-cmd --add-service=nfs --permanent
[root@serverb shares]# firewall-cmd --reload
[root@serverb ~]# showmount -e 127.0.0.1
Export list for 127.0.0.1:
/shares *
# ServerA 設定
[root@servera ~]# yum install -y nfs-utils autofs
[root@servera ~]# cat >> /etc/auto.master.d/lab.autofs << EOF
> /- /etc/my-autofs.conf
> EOF
[root@servera ~]# cat >> /etc/my-autofs.conf << EOF
> /nfs-lab -fstype=nfs4,rw,sync serverb:/shares
> EOF
[root@servera ~]# systemctl enable --now autofs
[root@servera ~]# ls /nfs-lab/
RHEL-LAB
[root@servera ~]# df /nfs-lab/
Filesystem 1K-blocks Used Available Use% Mounted on
serverb:/shares 10265600 2107392 8158208 21% /nfs-lab
|
如果你還沒有註冊 Like Coin,你可以在文章最下方看到 Like 的按鈕,點下去後即可申請帳號,透過申請帳號後可以幫我的文章按下 Like,而 Like
最多可以點五次,而你不用付出任何一塊錢,就能給我寫這篇文章的最大的回饋!