Where can I find a listing of LDAP Active directory messages and there meanings?

你。 提交于 2019-11-29 09:38:06

问题


I am getting the error:

LDAPException: Invalid Credentials (49) Invalid Credentials
LDAPException: Server Message: 80090308: LdapErr: DSID-0C0903A9, comment: AcceptSecurityContext error, data 52e, v1db1
LDAPException: Matched DN:

Where is a list that lists:

  • Server Message: 80090308 and meaning?
  • LdapErr: DSID-0C0903A9 and meaning?
  • data 52e, v1db1 and meaning?

回答1:


I'm not aware of a specific listing. The first number (49) is a standard Windows error code. You can use this tool http://www.microsoft.com/en-us/download/details.aspx?id=985 to look them up. Ignore the part about "Exchange".

The server message is also an error code - same tool as above.

DSIDs are pointers to the file and line number in the AD source code, so, without access to that it's not useful. Finaly the last two tidbits are just internal data from AD itself.




回答2:


Even I haven't yet the LDAP source of codes, indeed this will help you:

LDAP Error Code 49

Symptoms Users are unable to log in. The following appears in the atlassian-confluence.log: javax.naming.AuthenticationException: [LDAP: error code 49 - 80090308: LdapErr: DSID-0C0903A9, comment: AcceptSecurityContext error, data 701, v1db0]

Causes There could be many reasons for this issue. Please check the error code (in the example above, it's 701) and match it with the description in the following table:

Error Code Description

525 user not found

52e invalid credentials

530 not permitted to logon at this time

531 not permitted to logon at this workstation

532 password expired (remember to check the user set in osuser.xml also)

533 account disabled

701 account expired

773 user must reset password

775 user account locked

In the example above, the error code is 701 (account expired).

published at https://confluence.atlassian.com/display/CONFKB/User+directory+sync+fails+with+LDAP+Error+Code+49




回答3:


"52e" for "data" means invalid credentials. Your username seems correct but password is not correctly authenticated. (Refer to link and details shared by Jorge above)




回答4:


I solved my problem with the right Upper/Lower case: MYCOMPANY\myuser (as I was doing it with javascript, I had to use MYCOMPANY\\myuser



来源:https://stackoverflow.com/questions/10538099/where-can-i-find-a-listing-of-ldap-active-directory-messages-and-there-meanings

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!