autofs配置

NFS配置:

[root@localhost ~]# echo "/aa *(rw)" >>/etc/exports

[root@localhost ~]# mkdir /aa && chmod 777 -R /aa

[root@localhost ~]# systemctl start nfs && systemctl enable nfs

 

客戶端autofs配置

[root@localhost ~]# yum install -y autofs

[root@localhost ~]# cat /etc/auto.master
/misc /etc/auto.misc
/net -hosts
+dir:/etc/auto.master.d
+auto.master
/- /etc/aa.autofs

[root@localhost ~]# cat /etc/aa.autofs ;其中/dpc/share掛載目錄會自動創建,168.7.10.147:aa 爲NFS共享路徑
/dpc/share  -fstype=nfs,rw  168.7.10.147:/aa

[root@localhost ~]# systemctl enable autofs && systemctl start autofs
[root@localhost ~]# tree -L 3 /dpc
/dpc
└── share
├── aa
├── bb
└── cc

1 directory, 3 files

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章