User Tools

Site Tools


wiki:jira_troubleshooting

Jira troubleshooting

If there are problems with displaying non-english characters (čćšđž..) change the database to mysql and set correct encoding. Jira container by default uses h2db which is a java DB.

Run mysql docker container

 docker run --name mysql-jira -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=jira -d mysql:5.7

Download mysql connector

 wget https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-8.0.20.tar.gz

Unzip the file and copy jar to container

 docker cp mysql-connector-java-8.0.20.jar jira-container:/opt/atlassian/jira/lib

Restart container

 docker restart jira-container

Enter container and change db connection

Locate the dbconfig.xml file at the root of your JIRA home directory, the default locations are:

/var/atlassian/application-data/jira (on Linux)

Open the file in a text editing program. Change the storage engine parameter to the appropriate value. Save the file.

See also

References

wiki/jira_troubleshooting.txt · Last modified: 2020/12/14 10:42 by antisa

Except where otherwise noted, content on this wiki is licensed under the following license: CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki