2017/8/23

Linux NFS Mount 筆記


  • Server端
    • 參考網址  參考網址  參考網址
    • 建立掛載目錄
      • mkdir /share/server
    • 編輯可掛載目錄
      • nano /etc/exports
      • /share/server/ [ClientIP.0/24](rw,no_root_squash,no_all_squash,sync)
      • 權限:(rw,no_root_squash,no_all_squash,sync)
    • 開啟服務
      • service nfslock restart 
      • service rpcbind restart 
      • service nfs restart
    • 問題處理  參考網址
  • Client端
    • 建立目錄
      • mkdir /share/client
    • 顯示server可mount的目錄
      • showmount -e [ServerIP]
    • Mount目錄
      • mount -t nfs master:/share/server/ /share/client
  • 檢驗結果
  • Client端 開機自動掛載 參考網址   參考網址
    • 設定檔案
      • nano /etc/fstab 
      • master:/share/server /share/client nfs  defaults 0 0
    • 無須重開機 , 測試
      • mount -a
  • 解除mount
    • umount /share/client
    • 強制 -l

沒有留言:

張貼留言

test2