06/07/2023 04:23 PM
Dear Team,
We want to enable LDAP authentication and local account authentication to work at the same time. LDAP authentication for users and local for the application that access Saviynt to pull logs. Could you please let us know how to implement it?
-Lionel
Solved! Go to Solution.
06/07/2023 09:35 PM
LDAP Authentication:
How other application users will be pulling logs? We only support export of audit through analytics and Saviynt REST APIs. We do not expose application logs. For invoking REST APIs, you need to have a user woth localauthenabled=1 for that user. It can be done using custom query job.
06/08/2023 06:06 AM
yes, you are correct. We want to pull audit logs via. REST API.
Thanks,
Lionel
06/09/2023 06:44 AM
For audit logs , you can follow below documentation:
06/09/2023 07:01 AM
I can already fetch the audit logs via API, I want to enabled local account auth to do it. I'll going to try localauthenabled=1 , will let you know how it goes.
-Lionel
06/15/2023 07:18 AM
I do not see localauthenabled column in the users table, we are on 23.5 version.
06/15/2023 07:33 AM - edited 06/15/2023 10:22 AM
We found that the schema has changed int he new version. So the query is as follows
[EDITED]: I stand corrected, this is not the right solution, not sure how it worked for 2 account when we did this 😞
06/15/2023 07:52 AM
@lionelrl the column is indeed present but it appears that access is prevented for data analyzer. It should had been for security reasons as this is a sensitive field. For your requirement though you can still go ahead execute customquery job with the following query. Try it and let us know if the query executes successfully or not
update users set localauthenabled = b'1' where username = ''
mention the username accordingly in the above query
Thanks,
Nagesh K
06/15/2023 02:55 PM
Hi Nagesh,
The query is working as expected and we are able to perform local authentication.
Thanks,
Lionel