I'm getting this Error after I setup the database connection and successfully with MySql .
This issue comes when I'm creating the administrator user. please help me sort out this, its a blocker issue.
Hi Abdirezak,
It may be hard to diagnose this issue without seeing what is showing in the atlassian-jira.log.
My first guess is that the MySQL database was not properly configured as per the guide on: Connecting JIRA applications to MySQL.
Can you verify that all the steps in this guide were properly followed? The instructions do vary depending on what version of MySQL you are running and it must be a version we support.
The main area of concern would be the database permissions:
Ensure that the user has permission to connect to the database, and permission to create and populate tables. These can be provided with the following -
For MySQL 5.5, MySQL 5.6, and MySQL 5.7.0 to MySQL 5.7.5:
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER,INDEX on <JIRADB>.* TO '<USERNAME>'@'<JIRA_SERVER_HOSTNAME>' IDENTIFIED BY '<PASSWORD>';
flush privileges;
For MySQL 5.7.6 and above, you must also include the REFERENCES permission:
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,REFERENCES,ALTER,INDEX on <JIRADB>.* TO '<USERNAME>'@'<JIRA_SERVER_HOSTNAME>' IDENTIFIED BY '<PASSWORD>';
flush privileges;
Best regards,
Brian
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.