i'm trying to install confluence on my server, where jira is already running with no issues. i downloaded and installed the package to my ubuntu 16.04. server and also installed the mysql-connector-java-5.1.46
i changed my "my.cnf" as recommended:
and my database is also set to the correct collation:
but when i'm trying to install or rather connect confluence to my database i get this error:
please help!
Hi,
Could you please run this command on MySQL prompt and provide us the results;
mysql> show variables like '%collation%';
thanks
wow, you sir nailed it.... so how can i adjust my collation_connection value... thank you so far.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok, i managed to set this on my own.... but i still get the same error :-(
any ideas? do i have to do the whole installation process again ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Patrick,
There are other areas that you need to take a look at for collation and character set in MySQL.
As per atlassian's document below, collation in MySQL can be complicated because you can have a separate collation set at:
The above links might helpful.
Good luck.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok, after adding this to the "/etc/mysql/my.cnf" file
init-connect='SET NAMES utf8'
init_connect='SET collation_connection = utf8_unicode_ci'
skip-character-set-client-handshake
i rebootet mysql and launched following command once again and then it worked
ALTER DATABASE yourDB CHARACTER SET utf8 COLLATE utf8_bin
thank you very much for your help Shankar Asam
best regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you are welcome :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.