Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

📘 Problem: For Jira instances with CAS autentication authentication error arises while trying to import data into Tableau Desktop

📘 Solution: Whitelist Authentication

Whitelisting Authentication include 3 steps:

  • Shutdown Jira

  • Modify web.xml

  • Start Jira

Step 1.
  1. Shutdown Jira

Make sure Jira is shut down.

web.xml file exists in the following location (note, JIRA_INSTALL by default is set to the /opt/atlassian/jira/atlassian-jira/ directory): JIRA_INSTALL/WEB-INF/

Step 2.
  1. Modify web.xml

Modify the web.xml file, add the following strings to the filter org.jasig.cas.client.authentication.AuthenticationFilter:

Code Block
<init-param>
  <param-name>ignorePattern</param-name>
  <param-value>plugins/servlet/tableau</param-value>
</init-param>
<init-param>
  <param-name>ignoreUrlPatternType</param-name>
  <param-value>CONTAINS</param-value>
</init-param>

Step 3.
  1. Start Jira

Info

In case you need more information please visit INTEGRATING JIRA AND SSO USING CAS page.