Monday, December 7, 2015

Jira Error - for loading dashboards and plugins

Today, i faced an issue with our Jira. I could login fine with my credentials. But when i tried to access the dashboard i am getting the following error

Fix:
    Stop JIRA.

    Make a backup of the following directory and all its subdirectories:

    $JIRA_HOME/caches/indexes

    Remove the following directory and all its subdirectories:

    $JIRA_HOME/caches/indexes

    This will be rebuilt when JIRA is next reindexed.

    Start JIRA.

    Perform a re-index of JIRA through the Administration section.

Monday, October 19, 2015

How to install SSL on Jboss 7.1

I have a valid pfx certificate file. First we need to change it to a keystore



Used the below command to generate the keystore file.
==============================================================

keytool -importkeystore -deststorepass <Name> -destkeystore "dev.keystore" -srckeystore C:\Users\user\Desktop\SSL\NewWildCard.pfx -srcstoretype PKCS12 -srcstorepass <Password>

Updated the below lines in standalone.xml ($JBOSS_HOME/standalone/configuration) file in Jboss to enable SSL
======================================================================

After  <connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/> line added the below lines.


<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">
                <ssl name="https" password="<password>" certificate-key-file="/root/dev.keystore"/>
            </connector>

By default, it will listen on https://domainname.com:8443