Jump to content

DuckBrained

Members
  • Posts

    34
  • Joined

  • Last visited

Report Comments posted by DuckBrained

  1. 11 hours ago, dsmith44 said:

    Ok, I've fixed this for me.

     

    Running a strace on the net ads join command it was referencing /var/cache/samba/smb_krb5/krb5.conf.SHORTDOMAIN in which there is the line

     

    
    include /etc/krb5.conf

    That file doesn't exist on my system, instead I have /etc/krb.conf.

     

    A symlink later and I can join the domain properly.

     

    I'm adding this to /boot/config/go for now

    
    # Fix missing /etc/krb5.conf
    if [ ! -f /etc/krb5.conf ] && [ -f /etc/krb.conf ]; then
    ln -s /etc/krb.conf /etc/krb5.conf
    fi

     

     

    My hero. Worked straight away for me too. Thanks for posting this!

×
×
  • Create New...