Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Ldap Authendication Error ORA-31204

BalusamyFeb 13 2018 — edited Feb 13 2018

Hi,

My Ldap Login gets error

Authentication failed

ORA-31204: DBMS_LDAP: PL/SQL - Invalid LDAP Session.

I have given ACL as

begin

dbms_network_acl_admin.create_acl (

acl => 'ldap.xml',

description => 'Allow ldap queries',

principal => 'RREPO',

is_grant => TRUE,

privilege => 'connect'

);

end;

/

begin

dbms_network_acl_admin.add_privilege (

acl => 'ldap.xml',

principal => 'RREPO',

is_grant => TRUE,

privilege => 'resolve'

);

end;

/

begin

dbms_network_acl_admin.assign_acl(

acl => 'ldap.xml',

host => '*'

);

end;

/

commit;

I am Still getting error , Can any one help me.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 13 2018
Added on Feb 13 2018
6 comments
1,959 views