You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello, I working on to install Jira 8.20.1 and Mysql 8.0.26 but I have always the same error:
You have specified a database that is not empty, please specify an empty database. If you want to upgrade an existing installation, please follow these instructions instead.
I have make an new empty database but constants the same error what do I wrong?
Did you maybe after the upgrade copy over your dbconfig.xml ? It looks like your config file is pointing to a previously created db.
Have you checked the DB you are pointing to to see if it really is empty?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
On a new installation you should be able to point it to the correct DB during the initialization.
I assume that is where you get the error?
Are you sure you are point to the correct DB then? I'd say just verify the DB you are trying to connect to first..
Since it says it's not empty it can connect..
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well only thing I can suggest is to really use something like a Mysql workbench and truely check if any tables exist already.
If so, drop them.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have in mysql : drop database jiradb; and then I create database jiradb.
CREATE DATABASE jiradb CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,REFERENCES,ALTER,INDEX on <JIRADB>.* TO '<USERNAME>'@'<JIRA_SERVER_HOSTNAME>';
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| jiradb |
| mysql |
| performance_schema |
| sys |
+--------------------+
5 rows in set (0.00 sec)
mysql> use jiradb;
Database changed
mysql> show tables;
Empty set (0.00 sec)
mysql>
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.
Not really sure what this could be since you don't have any tables.
I'd say open a ticket with Atlassian directly (https://support.atlassian.com/contact) and see if this is a known bug?
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.
When I set the credentials for the database and click op "Test Connection" then...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh, I have copyed the mysql-connector-java-8.0.26.jar driver to /opt/atlassian/jira/lib/
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.