1. 安裝 nfs-utils 套件
[root@example test]# yum -y install nfs-utils
2. 依需求編輯 /etc/exports 設定檔
[root@example test]# vi /etc/exports
/home/backup 192.168.1.100 (rw,async,no_root_squash)
/tmp 192.168.1.55(rw,sync)
3. 啟用 nfs server
[root@example test]# systemctl start nfs-server
4. 使用 showmount 測試是否有分享
[root@example test]# showmount -e 127.0.0.1
5. 設定下次重開機後自動啟動
[root@example test]# systemctl enable nfs-server
Created symlink from /etc/systemd/system/multi-user.target.wants/nfs-server.service to /usr/lib/systemd/system/nfs-server.service.
6. 如果重新修改 /etc/exports 設定檔,執行以下指令讓設定檔生效
[root@example test]# exportfs -av
文章標籤
全站熱搜
留言列表