NFSサーバーからNFSクライアントにネットワーク経由でnfsフォルダーをマウントしようとしています。
NFSサーバーの構成は次のようになります
/mount 192.168.145.128/255.255.255.0(rw,sync,no_subtree_check) 127.0.0.1/255.255.255.0(rw,sync,no_subtree_check)
サーバーにすべての必要なパッケージ(nfs-kernel-server nfs-common
)をインストールしました。
オプションを使用してサーバーを再起動しました:
service nfs-kernel-server restart
クライアント側で、次を使用してマウントできるフォルダーリストを確認します。
showmount -e 192.168.145.131
Export list for 192.168.145.131:
/mount 127.0.0.1/255.255.255.0,192.168.145.128/255.255.255.0
しかし、Hostフォルダーをマウントしようとすると、次のエラーが表示されます。
mount -t nfs -v 192.168.145.131:/mount mount/
mount.nfs: timeout set for Fri Apr 18 17:34:44 2014
mount.nfs: trying text-based options 'vers=4,addr=192.168.145.131,clientaddr=192.168.145.128'
mount.nfs: mount(2): Invalid argument
mount.nfs: an incorrect mount option was specified
これは私のdmesg出力です:
dmesg | tail
[24930.733208] NFS: bad mount option value specified: vers=4
Ubuntu 14.04にアップグレードした後、incorrect mount option
エラーが発生しました。私のために働いたのは、nfsvers
オプションを指定することでした:
mount -t nfs -o nfsvers=3 machine:/ /mountdir