[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
authentication problems
- To: openldap-technical@openldap.org
- Subject: authentication problems
- From: Friedrich Locke <friedrich.locke@gmail.com>
- Date: Sat, 12 Jan 2013 18:21:09 -0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=oNWqhSkEB+9lD05VNpIkmAAWhH/CJfXL0DyG/zpqdFc=; b=H7+lYunnXUmF5XHNGj+NTL9AtLZb3ubOO4buRLnS0XMgbvjf03M7Xg/ZS4hjPomFRp sLR7vMRI7XqAP8gSd3wDu1rWKs+2TrygZhxxLS3P4rLNjDbKnWmdfPTQQSSRZMHK+MTx EMUO1rHm+kQrK94CVnhM2Fu+ttWFpsZYt2I7GUBMlPtLc0AQZ4MSpQkClEYgkr7rjc6K nVfTNPfm1gnudYjGY6WueVFV5w/LlojBDFNqso282AK82f45BtV2fbQDGJt0ZQ/vdfed djTKg0+Eb9rgNco9iQqnBqeZqnQtuwmGD6f3BVFjSLx16nTIr5v9Ls7nudvwb48xOSLr Gyuw==
Dear list member,
i am trying to retrieve data from a openldap server. When i issue ldapsearch from local machine itself, every thing works ok, but when i try from a remote host, i got problems related to GSSAPI authentication.
Here you have:
sioux@gustav$ ldapsearch -D cn=ypldap,ou=appsrv,dc=ufv,dc=br -b uid=vlobo,ou=people,dc=ufv,dc=br -W
Enter LDAP Password:
# extended LDIF
#
# LDAPv3
# base <uid=vlobo,ou=people,dc=ufv,dc=br> with scope subtree
# filter: (objectclass=*)
# requesting: ALL
#
# vlobo, people, ufv.br
dn: uid=vlobo,ou=people,dc=ufv,dc=br
uid: vlobo
objectClass: organizationalRole
objectClass: posixAccount
objectClass: qmailUser
cn: Valter Lobo
uidNumber: 2001
gidNumber: 2000
homeDirectory: /home/vlobo
loginShell: /bin/sh
gecos: Valter Lobo,,,
# search result
search: 2
result: 0 Success
# numResponses: 2
# numEntries: 1
sioux@gustav$
############################################################################
But when i try from a remote host (the same command line with -h option, of course):
sioux@lion$ ldapsearch -D cn=ypldap,ou=appsrv,dc=ufv,dc=br -b ou=people,dc=ufv,dc=br -h gustav.cpd.ufv.br -W
Enter LDAP Password:
SASL/GSSAPI authentication started
ldap_sasl_interactive_bind_s: Local error (-2)
additional info: SASL(-1): generic failure: GSSAPI Error: Miscellaneous failure (see text) (open(/tmp/krb5cc_1000): No such file or directory)
sioux@lion$
What is it my mistaken ?
Thanks in advance.