- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Can you disable ADFS SSO Authentication from a config file?
Migrated Prod 7.1 Oracle 12c database to dev 7.2 Oracle 12c appliance.
Prod, and previous dev, environment use ADFS SSO for authentication.
The migration went ok and ACM started, however:
When I access the UI, it automatically redirects to Prod ADFS SSO.
I am trying to bypass with /aveksa/main?SSOLogin=false&PageID=LoginPage
but even that redirects to PROD.
In other words:
Removing the security domain for ADFS from aveksa-standalone-full.xml , is always overwritten with the old server information.
Any thoughts?
Thank you
- Tags:
- 7.2
- 7.2 Enablement Hub
- authentication & login
- Enablement
- Enablement Hub
- Identity G&L
- Identity Governance & Lifecycle
- IG&L
- IGL
- RSA Identity
- RSA Identity G&L
- RSA Identity Governance & Lifecycle
- RSA Identity Governance and Lifecycle
- RSA IGL
- Version 7.2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Not the best solution, but you can mark that authentication source as deleted from the database then restart the application.
Something like:
update t_auth_configurations set IS_DELETED='TRUE' where AUTH_PROVIDER_NAME='<Your_Auth_Source>';
commit;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Also if you have not copied over the database KEKs (encryption keys), then you won't be able to login as AveksaAdmin and pretty much all stored passwords won't work (Collectors, Connectors âĤ etc).
Make sure you copy all files under /home/oracle/security from your Prod environment and overwrite the ones under /home/oracle/security in your new Dev environment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you to both suggestions.
I did they Security folder late last night.
But I appreciate the SQL command.
