Hi want to set up confluence new, but i get following install error during database setup
Your database must use 'READ-COMMITTED' as the default isolation level.
i added
<property name="hibernate.dialect">com.atlassian.confluence.impl.hibernate.dialect.MySQLDialect</property>
to the confluence.cfg.xml and restared but the error stay.
Please help me
I read all suggestions how to solve this when installing new software for first time, and the only solution was to go into phpmyadmin and execute command:
SET GLOBAL TRANSACTION ISOLATION LEVEL READ COMMITTED;
Yes, that's what the docs tell you to do.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not really Nic, no where in any documentation you can find what Frantisek Bekes posted above . . . unless you find that in a "eyes only Atlassian" paper?
Frantisek solution has been the only one that has worked so far.
I would suggest Atlassian to review their "official" documentation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oddly, I can find it in the installation docs, and the healthcheck docs and the troubleshooting docs. For example, https://confluence.atlassian.com/doc/database-setup-for-sql-server-9258.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should not be changing the confluence.cfg.xml - the installer should be setting that up correctly already
This is a database setting - you need to configure your database server correctly. See https://confluence.atlassian.com/confkb/confluence-fails-to-start-and-throws-mysql-session-isolation-level-repeatable-read-is-no-longer-supported-error-241568536.html for details on how to correct the settings on the database side.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi thx, n the link is descriped to set the property into the configuration.cfg.xml
Set the session isolation level in Confluence. In the top level of your Confluence home directory, find the confluence.cfg.xml
file and locate the <properties>
section. Add the following parameter:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please read the document again, and look at the database configuration.
The confluence.cfg.xml will be set correctly by the installer, the doc is about repairing systems that may have missed the full upgrade.
You need to correct BOTH of these, not just one.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hmmm
There are several options for fixing this:
[mysqld]
...
transaction-isolation=READ-COMMITTED
...
or
<properties>
...
<property name="hibernate.connection.isolation">2</property>
...
<properties>
i cannot enter into the mysql.ini cause its a managed hosting
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, that is a little misleading. You need to set it on the database side for it to persist.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Frantisek Bekes solution has been the only one that has worked so far .
I would suggest Atlassian to review their "official" documentation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.