Jira 8.13.3安装报错:You have specified a database that is not empty, please specify an empty database
官网文档:https://jira.atlassian.com/browse/JRASERVER-72389
其中有一个WalkAround,原因是Reusing a mysql database user on a new database caused Jira setup to fail with Database is not empty message,需要删除Jira Home文件夹,然后重新建库、建用户并分配权限:
1 2 3 4 5 6 7 8 |
1.Delete all content of Jira home folder 2.Drop Database, create new user, create new DB, and grant access: drop database jira; create user 'jira'@'localhost' IDENTIFIED BY 'jira'; CREATE DATABASE jira CHARACTER SET utf8mb4 COLLATE utf8mb4_bin; GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,REFERENCES,ALTER,INDEX on jira.* TO 'jira'@'localhost'; flush privileges; |
转载时请保留出处,违法转载追究到底:进城务工人员小梅 » Jira 8.13.3安装报错:You have specified a database that is not empty, please specify an empty database