Ubuntu 启动服务 失败 的 可能解决办法

➜  ~ service nfs-kernel-server start  
Job for nfs-server.service canceled.

如果遇到服务启动失败,请检查有关的文件夹是否创建(即:文件是否存在)

2018.12.29 更新

在/etc/exports中

发现部分目录对于 用户来说是没有权限执行的 建议放在用户的家目录中

# /etc/exports: the access control list for filesystems which may be exported
#               to NFS clients.  See exports(5).
#
# Example for NFSv2 and NFSv3:
# /srv/homes       hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
#
# Example for NFSv4:
# /srv/nfs4        gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)
# /srv/nfs4/homes  gss/krb5i(rw,sync,no_subtree_check)
#
/home/xx/nfs *(rw,sync,no_root_squash,no_subtree_check)


原文地址:https://www.cnblogs.com/schips/p/10135613.html