一、ubuntu環境下安裝客戶端與伺服器
nfs服務是實現linux和linux之間的檔案共享,nfs服務的搭建比較簡單。
現在介紹如何在ubuntu16.04系統中搭建nfs服務
安裝nfs客戶端:
sudo apt-get install nfs-common
安裝伺服器端:
sudo apt-get install nfs-kernel
-server
修改配置檔案
sudo vim /etc/exports
修改內容如下:
/home/pp/nfsshare *(rw,sync,no_root_squash)
設定nfsshare為伺服器共享資料夾,所有網段使用者可以訪問,非root使用者也可讀寫並同步
各段表達的意思如下
/home :共享的目錄
* :指定哪些使用者可以訪問
* 所有可以ping同該主機的使用者
192.168.2.* 指定網段,在該網段中的使用者可以掛載
192.168.2.12 只有該使用者能掛載
(ro,sync,no_root_squash): 許可權
ro : 唯讀
rw : 讀寫
sync : 同步
no_root_squash: 不降低root使用者的許可權
其他選項man 5 exports 檢視
重啟nfs服務
sudo /etc/init.d/nfs-kernel
-server restart
檢視掛載
showmount -e
export list for pp:
/home/pp/nfsshare *
二、客戶端如何訪問伺服器
1、檢查客戶端和服務端的網路是否連通(ping命令)
#配置本機ip
ifconfig eth0 192.168
.2.123
#ping + 伺服器ip
ping 192.168
.2.253
2、將該目錄掛載到本地
mount -t nfs -o nolock 192.168.2.253
:/home/pp/nfsshare /mnt
這裡記得新增-o nolock,否則會出現錯誤:
svc: failed to register lockdv1 rpc service (errno 111)
3、本地訪問
訪問本地的mnt目錄,就可訪問服務端共享的目錄了。
4、解除安裝本地目錄
umount /mnt
注意:在mount或者umount時候不要在操作目錄中進行,否則會出現busy錯誤。 ubuntu 16 04 nfs服務的搭建
原文 nfs服務是實現linux和linux之間的檔案共享,nfs服務的搭建比較簡單。現在介紹如何在ubuntu16.04系統中搭建nfs服務,ubuntu的搭建比紅帽的還要簡單。1 安裝nfs服務 sudo apt install nfs common2 修改配置檔案 sudo vim etc e...
ubuntu16 04 NFS 檔案共享設定
1.1 伺服器端需要安裝 nfs kernel server 軟體包 sudo apt get update sudo apt get install nfs kernel server1.2 建立共享的檔案 也可以是已經存在的檔案 sudo mkdir p home gongxiang1.3.修改...
Ubuntu16 04 nfs共享資料夾
nfs服務是實現linux和linux之間的檔案共享,nfs服務的搭建比較簡單。現在介紹如何在ubuntu16.04系統中搭建nfs服務。sudo apt install nfs commonsudo gedit etc exports修改內容如下 dir want to share client ...