web-dev-qa-db-ja.com

プロトコルが使用可能としてリストされているにもかかわらず、NFSクライアントが「プロトコルはサポートされていません」で失敗する

ProxmoxのNFSサーブをセットアップして、そこにある画像をリモートでバックアップしますVMイメージ。何らかの理由でProxmoxボックスがNFSサーバーに接続しません。別のNFSクライアントとの接続をテストしましたサーバーとそれは正常に動作しました。クライアントのコマンドが言う限り、それはしますこれらの接続タイプ(バージョン3と4)をサポートしているので、何が悪いのかわかりません。私は何をしているのかわかりません。 mがここにありません。

単純化のためにIPをSERVER_IPおよびCLIENT_IPに置き換え

マウントのリスト:

root@client:~# showmount SERVER_IP -e
Export list for SERVER_IP:
/export/backups CLIENT_IP/32
/export         CLIENT_IP/32

サポートされるプロトコルのリスト:

root@client:~# rpcinfo -p SERVER_IP | egrep "service|nfs"
   program vers proto   port  service
    100003    3   tcp   2049  nfs
    100003    4   tcp   2049  nfs
    100003    3   udp   2049  nfs
    100003    4   udp   2049  nfs

リモートエクスポートをマウントしようとしています:

root@client: mkdir -p /nfs/backups
root@client:~# mount SERVER_IP:/export/backups /nfs/backups -vv
mount.nfs: timeout set for Wed Apr 27 17:55:34 2016
mount.nfs: trying text-based options 'vers=4,addr=SERVER_IP,clientaddr=CLIENT_IP'
mount.nfs: mount(2): Protocol not supported
mount.nfs: trying text-based options 'addr=SERVER_IP'
mount.nfs: prog 100003, trying vers=3, prot=6
mount.nfs: trying SERVER_IP prog 100003 vers 3 prot TCP port 2049
mount.nfs: prog 100005, trying vers=3, prot=17
mount.nfs: trying SERVER_IP prog 100005 vers 3 prot UDP port 38873
mount.nfs: mount(2): Protocol not supported
mount.nfs: Protocol not supported

サーバー上の/etc/exports

/export CLIENT_IP/32(rw,sync,no_subtree_check,sec=sys,fsid=0)
/export/backups CLIENT_IP/32(rw,sync,no_subtree_check,all_squash,anonuid=1010,anongid=1010)

/export/backupsmount --rbind /home/backups /export/backupsです。 1010は、バックアップユーザーのuidとgidです。

/etc/conf.d/nfsで編集された唯一の設定:

OPTS_RPC_NFSD="8 -N 2 -V 3 -V 4 -V 4.1"

誰かアイデアはありますか?前もって感謝します。

1
Salis

Zacqのコメントに従ってサーバーを再起動します

誰もが本番Proxmoxサーバーで聞きたいソリューションではありませんが、機能します。 /etc/init.d/[something]再起動タイプの修正が必要です。

OPと全く同じ症状でした。

さらに、クライアントはdmesgで不平を言っていました

nfsv3: disagrees about version of symbol nlmclnt_proc
nfsv3: disagrees about version of symbol nfs_alloc_client
nfsv3: disagrees about version of symbol nfs_access_zap_cache
nfsv3: disagrees about version of symbol nfs_submount
nfsv3: disagrees about version of symbol nfs_create_server
nfsv3: disagrees about version of symbol nfs_post_op_update_in$
nfsv3: disagrees about version of symbol nfs_mkdir
nfsv3: disagrees about version of symbol nfs_get_client
nfsv3: disagrees about version of symbol nfs_file_operations
nfsv3: disagrees about version of symbol nfs_lookup
nfsv3: disagrees about version of symbol nfs_getattr
nfsv3: disagrees about version of symbol register_nfs_version
nfsv3: disagrees about version of symbol nfs_setattr
nfsv3: disagrees about version of symbol unregister_nfs_version
nfsv3: disagrees about version of symbol nfs_sops
nfsv3: disagrees about version of symbol nfs_link
nfsv3: disagrees about version of symbol nfs_try_mount
nfsv3: disagrees about version of symbol nfs_close_context
nfsv3: disagrees about version of symbol nfs_symlink
nfsv3: disagrees about version of symbol nfs_clone_server
nfsv3: disagrees about version of symbol nlmclnt_proc
nfsv3: Unknown symbol nfs_writeback_update_inode (err -22)
nfsv3: Unknown symbol nfs_dentry_operations (err -22)
4
David McNeill