您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么解決Linux系統(tǒng)下NFS服務器常見的故障”,在日常操作中,相信很多人在怎么解決Linux系統(tǒng)下NFS服務器常見的故障問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么解決Linux系統(tǒng)下NFS服務器常見的故障”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
NFS, 全名叫Network File System,中文叫網(wǎng)絡文件系統(tǒng),是Linux、UNIX系統(tǒng)的分布式文件系統(tǒng)的一個組成部分,可實現(xiàn)在不同網(wǎng)絡上共享遠程文件系統(tǒng)。NFS由Sun公 司開發(fā),目前已經成為文件服務的一種標準之一(RFC1904,RFC1813)。其最大的功能就是可以通過網(wǎng)絡,讓不同操作系統(tǒng)的計算機可以共享數(shù)據(jù), 所以可以把NFS看做是一個文件服務器。NFS缺點是其讀寫性能比本地硬盤要差一些。
一、NFS服務常見故障排查:
NFS服務出現(xiàn)了故障,主要從以下幾個方面檢查原因:
(1)檢查NFS客戶機和服務器的負荷是否太高,Server和Client之間的網(wǎng)絡是否正常;
(2)檢查/etc/exports文件的正確性;
(3)必要時重啟NFS和portmap服務;
(4)運行下列命令重新啟動portmap和NFS:
代碼如下:
# /etc/init.d/portmap restart
# /etc/init.d/nfs restart
# /etc/init.d/rpcbind restart (在RHEL/CentOS 6.x里面)
# chkconfig portmap on
# chkconfig nfs on
# chkconfig rpcbind on (在RHEL/CentOS 6.x里面)
注意:在RHEL/CentOS 6.x里面,portmap服務改名為rpcbind服務了;順便說一下,rpcbind服務也是圖形界面的關鍵基礎服務,不啟動此服務,不能啟動圖形桌面。
(5) 檢查Client上的mount命令或/etc/fstab的語法是否正確;
(6) 查看內核是否支持NFS和RPC服務。一般正常安裝的Linux系統(tǒng)都會默認支持NFS和RPC服務,除非你自己重新編譯的內核,而且沒選擇nfs支持選項編譯。
二、NFS常見故障解決方法:
1、The rpcbind failure error
故障現(xiàn)象:
代碼如下:
nfs mount: server1:: RPC: Rpcbind failure
RPC: Timed Out
nfs mount: retrying: /mntpoint[/code]
原因:
第一,可能因為客戶機的hosts文件中存在錯誤的ip地址、主機名或節(jié)點名組合;
第二,服務器因為過載而暫時停止服務。
2、The server not responding error
現(xiàn)象:
代碼如下:
NFS server server2 not responding, still trying
原因:
第一,網(wǎng)絡不通,用ping命令檢測一下。
第二,服務器關機。
3、The NFS client fails a reboot error
現(xiàn)象:
啟動客戶機后停住了,不斷顯示如下提示信息:
代碼如下:
Setting default interface for multicast: add net 224.0.0.0: gateway:
client_node_name.
原因:
在etc/vfstab的mount選項中使用了fg而又無法成功mount服務器上的資源,改成bg或將該行注釋掉,直到服務器可用為止。
4、The service not responding error
現(xiàn)象:
代碼如下:
nfs mount: dbserver: NFS: Service not responding
nfs mount: retrying: /mntpoint
原因:
第一,當前級別不是級別3,用who -r查看,用init 3切換。
第二,NFS Server守護進程不存在,用ps -ef | grep nfs檢查,用/etc/init.d/nfs start啟動。
5、The program not registered error
現(xiàn)象:
代碼如下:
nfs mount: dbserver: RPC: Program not registered
nfs mount: retrying: /mntpoint
原因:
第一,當前級別不是級別3。
第二,mountd守護進程沒有啟動,用/etc/init.d/nfs腳本啟動NFS守護進程。
第三,看/etc/dfs/dfstab中的條目是否正常。
6、The stale file handle error
現(xiàn)象:
代碼如下:
stale NFS file handle
原因:
服務器上的共享資源移動位置了,在客戶端使用umount和mount重新掛接就可以了。
7、The unknown host error
現(xiàn)象:
代碼如下:
nfs mount: sserver1:: RPC: Unknown host
原因:
hosts文件中的內容不正確。
8、The mount point error
現(xiàn)象:
代碼如下:
mount: mount-point /DS9 does not exist.
原因:
該掛接點在客戶機上不存在,注意檢查命令行或/etc/vfstab文件中相關條目的拼寫。
9、The no such file error
現(xiàn)象:
代碼如下:
No such file or directory.
原因:
該掛接點在服務器上不存在,注意檢查命令行或/etc/vfstab文件中相關條目的拼寫。
10、No route to host
錯誤現(xiàn)象:
代碼如下:
# mount 10.10.11.211:/opt/data/xmldb /c2c-web1/data/xmldb -t nfs -o rw
mount: mount to NFS server ’10.10.11.211′ failed: System Error: No route to host.
原因:
防火墻被打開,關閉防火墻。
這個原因很多人都忽視了,如果開啟了防火墻(包括iptables和硬件防火墻),NFS默認使用111端口,我們先要檢測是否打開了這個端口,還要檢查TCP_Wrappers的設定。
11、Not owner
現(xiàn)象:
代碼如下:
# mount -F nfs -o rw 10.10.2.3:/mnt/c2c/data/resinfo2 /data/data/resinfo2
nfs mount: mount: /data/data/resinfo2: Not owner
原因:
這是Solaris 10版本掛載較低版本nfs時報的錯誤。
解決:
需要用-o vers=3參數(shù)
示例:
代碼如下:
# mount -F nfs -o vers=3 10.10.2.3:/mnt/c2c/data/resinfo2 /data/data/resinfo2
12、RPC: Program not registered & retrying
現(xiàn)象:
代碼如下:
nfs mount: 10.10.2.3: : RPC: Program not registered
nfs mount: retrying: /data/data/resinfo2
原因:
沒有啟動NFS共享端服務。
解決:需要重新啟動share端的NFS服務,
Linux:
代碼如下:
mount: RPC: Program not registered
# /etc/init.d/nfs restart
Solaris:
代碼如下:
mount: RPC: Program not registered
# /etc/rc.d/init.d/nfs restart
13、can’t contact portmapper: RPC: Remote system error – Connection refused
現(xiàn)象:
代碼如下:
# exportfs -a
can’t contact portmapper: RPC: Remote system error – Connection refused
原因:
出現(xiàn)這個錯誤信息是由于server端的portmap沒有啟動。
解決:
代碼如下:
# /etc/init.d/portmap start
到此,關于“怎么解決Linux系統(tǒng)下NFS服務器常見的故障”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。