Versions Compared

Key

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

...

Table of Contents
typeflat

Usage

QuestionAnswer
Your administrator confirms that the installation is successful and should work as intended. However, you still cannot login into the supported applications

Please try to clear your browsers cache including it's cookies

 

top

Installation

QuestionAnswer
How do I redirect user to my SSO page?There are the params to change in seraph-config.xml
  • login.url
  • link.login.url
  • logout.url
How do I disable the login gadget?

There is a tag to change in $JIRA_HOME/atlassian-jira/WEB-INF/classes/jpm.xml

Code Block
languagexml
        <property>
            <key>jira.disable.login.gadget</key>
            <default-value>false</default-value>
            <type>boolean</type>
            <admin-editable>false</admin-editable>
            <sysadmin-editable>false</sysadmin-editable>
        </property>

Change the default-value from false to true

...