CentOS7-nfs設置練習
以下說明皆是以Oracle VM VirtualBox之虛擬機演練CentOS7的nfs設置 一、準備好兩台虛擬機,分別稱作A虛擬機和B虛擬機 二、在A虛擬機上安裝套件 # yum -y install nfs-utils 三、開啟nfs # systemctl start rpcbind # systemctl start nfs 四、建立一個未來要共用的資料夾 # mkdir /nfsdata # chmod 755 /nfsdata 五、新增nfs的參數 # vim /etc/exports 加上這條參數 /nfsdata 192.168.1.0/24(rw,sync,no_root_squash,no_all_squash) => 設定跟B虛擬機一樣的網域 六、重啟nfs載入設定 # systemctl restart nfs 七、檢視目前掛載的資料夾 # showmount -e localhost 會發現/nfsdata 192.168.1.0/24已經被掛載完成 八、切換到B虛擬機檢視目前掛載的資料夾 # showmount -e [A虛擬機的IP] 同樣是/nfsdata 192.168.1.0/24的結果 九、在B虛擬機中建立一個未來要連結的資料夾,並掛載於/nfsdata上 # mkdir /centosB # mount -t nfs [A虛擬機的IP]:/nfsdata /centosB 十、在/centosB加入一個測試檔案 # cd /centosB # echo "hello, this is a test file from VM_B." > test.txt 十一、切換回A虛擬機查看/nfsdata中是否有test.txt檔案 # cd /nfsdata # ls test.txt