web-dev-qa-db-ja.com

NFSネットワークパスが見つかりません

私はdebian7サーバーでnfs共有をセットアップし、それをWindows7マシンにマウントしようとしました。

私は以下を試しました:

C:\Users\David>mount \\192.168.178.240\backups Y:
Network Error - 53

Type 'NET HELPMSG 53' for more information.


C:\Users\David>mount 192.168.178.240:/backups Y:
Network Error - 53

Type 'NET HELPMSG 53' for more information.

NET HELPMSG 53を実行すると、ネットワークパスが見つからなかったことが通知されます。

C:\Users\David>showmount -e 192.168.178.240
Exports list on 192.168.178.240:
/backups                           192.168.0.0/255.255.255.0

ご覧のとおり、doesが存在します。 Windows 7マシンのIPアドレスは192.168.137.252であるため、これは正しいサブネットにあります。

/ etc/exportsは次のとおりです。

root@debiansrv:~# grep backups /etc/exports
/backups 192.168.0.0/255.255.255.0(rw)
5
David

ドライブ名を指定する代わりに「*」を付けてみてください。

ドライブ名も割り当てられない場合もエラー53が返されます。

また、showmount -e output showとまったく同じようにマウントします。例:

エクスポートで/ homeをエクスポートと言った場合、/ home/[something]をマウントしないでください、ウィンドウは理解しません。

2
user315267

私は同じ問題を抱えており、 質問 で見つけました

NFS server has an option of working in insecure mode (Allowing higher incoming port numbers). Windows NFS client often uses higher port numbers. You can enable this option by adding an option to the share Example: /share *(insecure,rw)

You can also try installing Windows services for UNIX package which contains a nfs client. You can try to connect the nfs server using this utility and cross check again. You can download the package from the following link http://www.Microsoft.com/downloads/e...displayLang=en

それに従って/ etc/exportsを変更し(安全でないオプションを追加することにより)、それは機能します

0
netawater