Hi,
We have installed SAML pligin for JIRA.
Everything works fine when we set config to Seconday authentication and tested. However as soon as we select Primary authentication in configuration JIRA will be not reachable.
We would like to change this config via DB or some other way. Can any one help me to identify which table contain the SAML plugin details.
I found a link related to confluence, however this wont help as i could not find similar table as explained here.
regards,
Prashant
Hi,
This is quite outdated but I had same issue, here is some SQL to do so.
This is using PostgreSQL and Jira 8.1.0.
This requires a restart of Jira as we hacked its DB.
-- View all params about SAML
select *
from propertyentry pe join propertystring ps on pe.id = ps.id
where Lower(pe.property_key) like '%saml%'
-- Specific search on redirect on login
select * from propertystring
where id = (select id from propertyentry where property_key = 'com.atlassian.plugins.authentication.samlconfig.redirect-on-login')
-- Update that one to false
update propertystring
set propertyvalue = 'false'
where id = (select id from propertyentry where property_key = 'com.atlassian.plugins.authentication.samlconfig.redirect-on-login')
To know what property type to look after, see https://confluence.atlassian.com/jirakb/propertyset-table-mappings-317196217.html
Regards,
Rudy
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.