Jump to content
XPEnology Community

milton

Rookie
  • Posts

    3
  • Joined

  • Last visited

Posts posted by milton

  1. Hi

     

    I just tryed to restart the NFS Service manually by "s83nfs.sh restart" and i get this errors:

     

    Starting NFS server...

    :: Loading module rpcsec_gss_krb5 ... [FAILED]

    :: Loading module exportfs ... [ OK ]

    :: Loading module nfsd ... [FAILED]

    mount: mounting none on /proc/fs/nfsd failed: No such device

     

    Can anybody help me whart this error occours?

     

    Thanks

     

    you may refer my post on http://xpenology.com/forum/viewtopic.php?f=2&t=558&p=2600&hilit=nfs#p2600

  2. I managed to fix this issue due to some module was not loaded ,which is required by NFS. I had modify the /etc/rc script to check whether nfs is enable, then load the module. you can test it.

     

     

     

    
    To test it, you can just try to ssh to the nas and execute below command 
    #insmod /lib/modules/auth_rpcgss.ko
    #/usr/syno/etc/rc.d/S83nfsd.sh restart
    
    ##### Load module for NFS --- code for /etc/rc
    
    Support=`/bin/get_key_value /etc.defaults/synoinfo.conf supportNFS`
    
    if [ "$Support" = "yes" ]; then
           insmod /lib/modules/auth_rpcgss.ko
    fi
    

×
×
  • Create New...