Skip to Main Content

LiveLabs & Workshops

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!

MySQL LDAP Pluggable Authentication

User_QEN3PJan 28 2021

I'm in the process of implementing LDAP authentication on our MySQL database server running 8.0.17. I have all the right information, but it appears I'm not setting up the bind root dn and password correctly. Could anyone out there provide an examples of how to get this set up? I can't hit our AD as anonymous. I'm using the simple LDAP plugin.
Thanks

Comments

Greybird-Oracle
There is currently no record count method in the DPL (Direct Persistence Layer) nor in the base JE API.

You can call EntityIndex.map().size() to get a record count. However, this is implemented by iterating over all records using read uncommitted. So this is no faster than if you iterate yourself (as you've already done) but using read uncommitted (Cursor.READ_UNCOMMITTED or LockMode.READ_UNCOMMITTED).

In the next release we are adding a faster count to the base API and the DPL. This will be used automatically by EntityIndex.map().size(). This count, just like the count obtained by iterating with read uncommitted, will not be transactionally correct.

Mark
531207
got that.

thanks for your reply and now i'm expecting for the next release,

thanks again and good luck.

Richie
1 - 2

Post Details

Added on Jan 28 2021
0 comments
57 views