2013年3月30日土曜日

NFS マウントエラー時の対処法 ( svc: failed to register lockdv1 RPC service (errno 111). )

NFS 設定ってたまに失敗する。
今回は Ubuntu 12.04 の NFS サーバのディレクトリをマウントしようとしたら、
svc: failed to register lockdv1 RPC service (errno 111). というエラーが出た。
ググってみると下記に解決方法が書いてあった。
http://forums.xilinx.com/t5/Embedded-Linux/nfs-mount-problem-on-microblaze/td-p/153272

まず、エラーが出た時の mount オプション。
NFS サーバの IP アドレスは 192.168.0.1 (Ubuntu 12.04)。
errno 111 が出る。

# mount -t nfs 192.168.0.1:/hogehoge /mnt/hogehoge

[ 1384.083734] svc: failed to register lockdv1 RPC service (errno 111).
mount: mounting 192.168.0.1:/hogehoge on /mnt/hogehoge failed: Connection refused

こんなときは、mount のオプションを追加してやると良いようだ。

# mount -o port=2049,nolock,proto=tcp -t nfs 192.168.0.1:/hogehoge /mnt/hogehoge

● NFS, mount, errno 111, svc: failed to register lockdv1 RPC service, マウント, エラー, 失敗

0 件のコメント: