您好,登錄后才能下訂單哦!
nfs 是一種網(wǎng)絡(luò)文件系統(tǒng),需要依賴rpc進(jìn)行過程調(diào)度
注意nfs只驗(yàn)證id,驗(yàn)證用戶名,并且只能在類unix os上進(jìn)行文件共享服務(wù),由于它的脆弱的驗(yàn)證機(jī)制,所以不適宜在internet上工作,在內(nèi)網(wǎng)使用是非??尚械?。
nfs服務(wù)端需要確定這兩個(gè)包正確安裝 nfs-utils rpcbind
若是ubuntu服務(wù)器,則是nfs-common,nfs-kernel-server兩個(gè)包,rpcbind是默認(rèn)安裝的。
yum?-y?install?nfs-utils?rpcbind
編輯共享目錄配置文件 /etc/exports
/var/www/html??192.168.10.0/24(rw,async,no_root_squash)??192.168.20.0/24(ro) #多個(gè)網(wǎng)段或主機(jī)之間用空格分開 /var/www??????????192.168.10.0/24(ro,sync,root_squash)
參數(shù):ro表示只讀,rw表示可讀寫,sync同步寫*即同時(shí)寫入內(nèi)存和硬盤,async異步*暫存于內(nèi)存,no_root_squash表示如果客戶端連接過來的用戶是root,則對(duì)服務(wù)端的目錄同樣是root權(quán)限****請(qǐng)不要開啟,好危險(xiǎn)的,root_squash表示客戶端是root則將其轉(zhuǎn)為匿名用戶的權(quán)限***建議開啟。
http://cloud.yesky.com/info/332/1460300332.shtml
http://www.pcpop.com/article/6054830.shtml
啟動(dòng)nfs服務(wù),并設(shè)為開機(jī)自啟動(dòng)
service?rpcbind?start #或則?systemctl?start?rpcbind service?nfs?start #或則?systemctl?start?nfs ######ubuntu服務(wù)器則是?service?startnfs-kernel-server?start chkconfig?rpcbind?on #或則?systemctl?enable?rpcbind chkconfig?nfs?on #或則?systemctl?enable?nfs
配置防火墻,放行響應(yīng)端口或服務(wù)
firewall-cmd?--permanent?--add-service=nfs firewall-cmd?--permanent?--add-service=rpc-bind firewall-cmd?--permanent?--add-service=mountd firewall-cmd?--reload firewall-cmd?--list-all #查看firewalld方向的資源
客戶端掛載
showmount?-e?nfs_server_ip:?查看nfs服務(wù)端的可用掛載點(diǎn)
客戶端掛載操作
mount?-t?nfs?nfs_server:/var/www/html??/bendikongmulu 或者 mount?-t?nfs?nfs_server:/var/www/html??/bendikongmulu?-o?proto=tcp
無報(bào)錯(cuò)便成功,當(dāng)然客戶端可以使用 df -h 來查看是否掛載過來了;這里客戶端切換到本地掛載點(diǎn)便可以看見服務(wù)端的文件了(注意若,服務(wù)端共享的目錄為空,客戶端是無法查看的)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。