After reviewing the documentation, Atlassian recommends binary logging format of “ROW”. The default in MySQL is “STATEMENT” but we use binary logging format of “MIXED” which should be able to support both “ROW” and “STATEMENT” types of formats. Is using “MIXED” a supported configuration?
We use one MySQL instance with 5 different databases for our Atlassian tools, which include JIRA and confluence. It's worked great out of the box (standard defaults), with the exception of these few minor steps:
Install mysql
sudo vi /etc/mysql/my.cnf and edit bind-address=0.0.0.0
chown mysql:mysql /var/run/mysqld/
service mysql start
login to mysql: $mysql -u root –p
mysql> SET GLOBAL storage_engine = 'InnoDB';
mysql> CREATE DATABASE <dbname> CHARACTER SET utf8 COLLATE utf8_bin;
mysql> FLUSH PRIVILEGES;
mysql> GRANT ALL PRIVILEGES ON <dbname>.* TO '<tooluser>'@'<ipaddress>' IDENTIFIED BY '<password>';
Put the mysql java connector on the application server. (You can download it from the web). <installationdirectory>/lib/mysql-connector-java-5.1.23-bin.jar
If you monitor the logs you'll get warnings and recommendations for how to further tweek it if necessary. But the above simple setup has been running fine for us for several years without any issues.
On a side note: Atlassian has moved the mysql*.jar location in stash 3.8.0 to live under $STASH_HOME/lib (also moved its server.xml file to a home location). I'm not sure if other Atlassian tools will follow suit in future releases, but keep a look out for a possible new location for the mysql*.jar. I look forward to these changes because it's helpful to have the configuration files under home instead of the inst so your customizations won't get over written during upgrades.
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.