-1

I am trying to setup jira and I am using mysql database. I keep receiving this error all the time:

Caused by: java.sql.SQLException: Illegal mix of collations (latin1_swedish_ci,I MPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='

What could cause this and how to solve it?

1 Answers1

0

Please follow the JIRA Setup guide. It's pretty obvious that you are using the wrong collation. JIRA uses utf8_bin as a collation. I would recommend you to take a look at this document and follow the steps.

Saleh Parsa
  • 1,415
  • 13
  • 22
  • Thank you! I did yesterday and deleted the database, recreated it again and started from the beginning. It was quite clear that the collation was not set correctly. – HR recruiter Apr 20 '17 at 09:47