access denied by server while mounting

在开发板上挂在nfs服务器的时候,
遇到access denied by server while mounting这个错误,
可能的原因:
开发板的ip地址不允许挂载到NFS服务器上
解决办法:
在/etc/exports这个文件的后面添加一句
/home/share *(rw,sync,no_root_squash)
其中share就是共享文件夹,这句话的意思是允许任何ip地址挂在到nfs服务器上
注意
在修改完/etc/exports这个文件后,一定要重启nfs服务器

你可能感兴趣的:(服务器,linux,运维)