Ubuntu下配置NFS服務

Table of Contentsubuntu

1.下載相關軟件服務器

2.創建共享目錄
網絡

3.修改該配置文件app

4.重啓服務測試

5.測試服務器spa

6.測試客戶端
rest

 

測試系統:Ubuntu8.04
server

 

1.下載相關軟件

使用以下命令,能夠在ubuntu下很方便的獲取並安裝相關軟件內存

#sudo apt-get install portmap nfs-kernel-server nfs-commonget

若是是要客戶端和服務器端分開,可使用以下命令

服務器端:

#sudo apt-get install portmap nfs-kernel-server
客戶機端:

#sudo apt-get install portmap nfs-common

 

2.創建共享目錄

根據我的習慣,最好路徑不要太深,畢竟敲命令太長很不爽^_^

#sudo mkdir /nfsboot

#sudo chmod 777 /nfsboot

 

3.修改該配置文件

剛安裝完配置文件只有一些說明,其路徑是:/etc/exports

#sudo vi /etc/exports

在裏面加入

/nfsboot *(rw,sync,no_root_squash)

先彆着急看個問題: 若是端口號大於1024,則須要將 insecure 選項加入到配置文件(/etc/exports)相關選項中mount客戶端才能正常工做

大於1024應該改爲: /nfsboot *(insecure, rw,sync,no_root_squash)

由於這問題搞了一個通宵

說明:

/nfsboot是要共享的目錄

*表明容許全部的網絡段訪問

rw是可讀寫權限

sync是資料同步寫入內存和硬盤

no_root_squashNFS客戶端分享目錄使用者的權限,若是客戶端使用的是root用戶,那麼對於該共享目錄而言,該客戶端就具備root權限

最後從新掃描配置文件,使用戶修改/etc/exports配置文件沒必要重啓NFS服務

#sudo exportfs -ra

 

4.重啓服務

使用以下命令重啓一下服務

#sudo /etc/init.d/portmap restart

#sudo /etc/init.d/nfs-kernel-server restart

 

5.測試服務器

查看服務目錄和權限

#showmount -e

我獲得的結果是:

Export list for MyZone:

/nfsboot (everyone)

 

6.測試客戶端

/nfsboot裏新建文件,主要是做測使用

#touch /nfsboot/testfile

在其餘分區掛載nfs文件系統,記得該目錄要先存在才行

#sudo mount 218.192.***.***:/nfsboot /mnt

查看一下:

#ls /mnt

testfile

 

卸載nfs文件系統 

#sudo  umount  218.192.***.***:/nfsboot  /mnt

彆着急可能又出問題了

例子以下:

root@1320:/media/nfs_share# umount  /media/nfs_share/
umount.nfs: /media/nfs_share: device is busy


這時使用umount 命令,會提示設備忙,沒法掛載。

處理方法:

root@1320:/media/nfs_share#  fuser -km /datatmp

root@1320:/media/nfs_share#  df -lh


測試是否成功

yang@1320:~$ sudo umount /media/nfs_share
umount: /media/nfs_share: not mounted

實 際上nfs配置是否成功還與/etc/hosts.deny   和  /etc/hosts.allow 這兩個文件的設置的有關,如果在用#:showmount  -e 來激活 portmap   出現又mount: RPC: Port mapper failure - RPC: Unable to receive 或者
 mount: RPC: Program not registered,這極可能是你的這兩個文件沒有配置好。因爲個人nfs容許任何IP掛載,因此設置以下:

       liu@liu-laptop:~$ sudo gedit /etc/hosts.deny             
   在後面加上
      ### NFS DAEMONS
portmap:ALL
lockd:ALL
mountd:ALL
rquotad:ALL
statd:ALL

      liu@liu-laptop:~$ sudo gedit /etc/hosts.allow
在後面加上
#  ### NFS DAEMONS

portmap: ALL:allow

lockd: ALL:allow

rquotad: ALL:allow

mountd: ALL:allow

statd: ALL:allow
有些網友還說能夠是防火牆的問題,這我就不清楚了。

若是還不行試試關閉防火牆: liu@liu-laptop:~$ sudo ufw disable

相關文章
相關標籤/搜索