Centos

NFS 在綁定的 NFS 介面上不起作用 - mount.nfs:沒有這樣的設備

  • July 29, 2013

嘗試在 RHEL 伺服器上掛載 NFS 時出現錯誤消息。

NFS 在我們所有其他伺服器上都可以正常工作,但在 2 台新啟動的伺服器上卻沒有,並且出現錯誤“mount.nfs:沒有這樣的設備”。

[root@tst-03 ~]# mount -o udp -t nfs 192.168.10.19:/export/install/pkgs/other/ /mnt
mount.nfs: No such device
[root@tst-03 ~]# showmount -e 192.168.10.19
Export list for 192.168.10.19:
/export/install         (everyone)
[root@tst-03 ~]# lsmod
Module                  Size  Used by
bluetooth              99548  0
rfkill                 19735  1 bluetooth
bonding               125610  0
bridge                 79790  0
stp                     2173  1 bridge
llc                     5642  2 bridge,stp
nfsd                  305799  13
lockd                  74270  1 nfsd
nfs_acl                 2647  1 nfsd
auth_rpcgss            44895  1 nfsd
exportfs                4236  1 nfsd
sunrpc                243758  17 nfsd,lockd,nfs_acl,auth_rpcgss
pcc_cpufreq             5090  0
ipv6                  322029  185 bonding
hpilo                   7865  0
hpwdt                   7094  0
power_meter             9343  0
microcode             112594  0
tg3                   140819  0
serio_raw               4818  0
sg                     30124  0
iTCO_wdt               13662  0
iTCO_vendor_support     3088  1 iTCO_wdt
ioatdma                58482  160
dca                     7197  1 ioatdma
shpchp                 33482  0
ext4                  364410  5
mbcache                 8144  1 ext4
jbd2                   88738  1 ext4
sd_mod                 39488  3
crc_t10dif              1541  1 sd_mod
sr_mod                 16228  0
cdrom                  39771  1 sr_mod
hpsa                   52017  2
qla2xxx               366337  0
scsi_transport_fc      52241  1 qla2xxx
scsi_tgt               12173  1 scsi_transport_fc
pata_acpi               3701  0
ata_generic             3837  0
ata_piix               22846  0
dm_mirror              14101  0
dm_region_hash         12170  1 dm_mirror
dm_log                 10122  2 dm_mirror,dm_region_hash
dm_mod                 81500  17 dm_mirror,dm_log
[root@tst-03 log]# modinfo nfs
filename:       /lib/modules/2.6.32-220.el6.x86_64/kernel/fs/nfs/nfs.ko
license:        GPL
author:         Olaf Kirch <okir@monad.swb.de>
srcversion:     666B7C399EC7E374CAD721B
depends:        sunrpc,fscache,lockd,auth_rpcgss,nfs_acl
vermagic:       2.6.32-220.el6.x86_64 SMP mod_unload modversions
parm:           callback_tcpport:portnr
parm:           cache_getent:Path to the client cache upcall program (string)
parm:           cache_getent_timeout:Timeout (in seconds) after which the cache upcall is assumed to have failed (ulong)
parm:           enable_ino64:bool
[root@tst-03 log]# uname -a
Linux tst-03 2.6.32-220.el6.x86_64 #1 SMP Wed Nov 9 08:03:13 EST 2011 x86_64 x86_64 x86_64 GNU/Linux

如果我必須提供其他資訊,請告訴我!

我有一個名為“nfs”的綁定介面,這就是問題所在。我不得不將綁定別名更改為其他名稱,而不是“nfs”(最好是bond0),因為當您嘗試載入nfs模組(執行mount命令時自動完成)時,您正在傳遞“mode=active-備份 miimon=100" 作為 nfs 模組的參數,不接受。

我必須按照以下步驟操作:

  1. ifdown nfs
  2. 在 bonding.conf 更改別名
  3. 更改物理介面上的綁定名稱
  4. ifup new_interface_name

引用自:https://serverfault.com/questions/526129