Confluence fails to start with error 'Unknown system variable 'storage_engine'' using MySQL 5.7.x
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Fisheye および Crucible は除く
Atlassian only supports running Confluence version 6.3 and above connected to MySQL 5.7. We recommend using a supported version of MySQL (5.5.x and 5.6.x based on your Confluence version). Please see our official Supported Platforms documentation for the list of all the supported platforms for the recent Confluence Versions: Supported Platforms
問題
Confluence fails to start
atlassian-confluence.log
に次のメッセージが出力される。
2015-10-31 16:57:07,235 WARN [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] [mchange.v2.resourcepool.BasicResourcePool] run com.mchange.v2.resourcepool.BasicResourcePool$AcquireTask@544beb9c -- Acquisition Attempt Failed!!! Clearing pending acquires. While trying to acquire a needed new resource, we failed to succeed more than the maximum number of allowed acquisition attempts (30). Last acquisition attempt exception:
java.sql.SQLException: Unknown system variable 'storage_engine'
診断
環境
- MySQL 5.7.x
- Confluence 6.2.x and below
原因
MySQL 5.7.x uses InnoDB by default, and has removed the storage_engine
system variable. Having this variable causes Confluence to fail to start.
ソリューション
Resolution 1:
- Use a supported database
- Upgrade to Confluence 6.3.x and above as MySQL 5.7 is supported in that version
Resolution 2:
You may wish to proceed to use Confluence using MySQL 5.7 and the following workaround might solve this issue. However, please note that the reason that we do not support this version with Confluence is because we did not test our product with this database version. Because of this, there might be several compatibility issues within the usage of Confluence product. The term "unsupported" is that we may not be able to help you in troubleshooting issues within your instance should it presents any problem.
Remove the storage_engine parameter from the MySQL JDBC connection string:
- Confluence を停止します。
<confluence-home>/confluence.cfg.xml
を編集します。The <confluence_home> directory is the path defined in the following file:
<confluence_install>/confluence/WEB-INF/classes/confluence-init.properties
Look for a line similar to:
<property name="hibernate.connection.url">jdbc:mysql://localhost/confluence?sessionVariables=storage_engine%3DInnoDB&amp;useUnicode=true&amp;characterEncoding=utf8</property>
Remove
storage_engine%3DInnoDB&
from the line, it should look like:<property name="hibernate.connection.url">jdbc:mysql://localhost/confluence?sessionVariables=useUnicode=true&amp;characterEncoding=utf8</property>
- Confluence を起動します。