I am new to the ldapmodify tool and I am attempting to import a .ldif file to change some schema attributes.
The problem is that when I run the ldapmodify tool I am receiving the following error:
jason@valhalla ~/scripts $ ldapmodify -f .UID2SID/modify-06.20.2008-mclame.ldif -h domain -D Administrator -w password SASL/GSSAPI authentication started ldap_sasl_interactive_bind_s: Local error (-2) additional info: SASL(-1): generic failure: GSSAPI Error: Unspecified GSS failure. Minor code may provide more information (No credentials cache found)
Can I disable this GSSAPI authentication or is this something I need to configure or use kinit to obtain? Thanks.
--On Friday, June 20, 2008 10:57 AM -0600 Jason Gerfen jason.gerfen@scl.utah.edu wrote:
Can I disable this GSSAPI authentication or is this something I need to configure or use kinit to obtain? Thanks.
That depends on how your LDAP server is set up. Does it require GSSAPI authentication? If so, your arguments to ldapmodify are incorrect. If not, I suggest you read up on the -x option, which will allow simple binds. I would also note your value to the -D option is not valid.
--Quanah
--
Quanah Gibson-Mount Principal Software Engineer Zimbra, Inc -------------------- Zimbra :: the leader in open source messaging and collaboration
Add -x to your ldapmodify command. From ldapmodify manpage:
" -x Use simple authentication instead of SASL."
Jason Gerfen wrote:
I am new to the ldapmodify tool and I am attempting to import a .ldif file to change some schema attributes.
The problem is that when I run the ldapmodify tool I am receiving the following error:
jason@valhalla ~/scripts $ ldapmodify -f .UID2SID/modify-06.20.2008-mclame.ldif -h domain -D Administrator -w password SASL/GSSAPI authentication started ldap_sasl_interactive_bind_s: Local error (-2) additional info: SASL(-1): generic failure: GSSAPI Error: Unspecified GSS failure. Minor code may provide more information (No credentials cache found)
Can I disable this GSSAPI authentication or is this something I need to configure or use kinit to obtain? Thanks.
openldap-software@openldap.org