资源介绍
1、JDK、JIRA、MySQL 安装完毕,停止 JIRA 服务
创建数据库:
mysql
create database jiradb character set ‘gb2312′;
创建用户并赋与权限:
create user jirauser identified by ‘jira’;
grant all privileges on *.* to ‘jirauser’@'%’ identified by ‘jira’
with grant option;
grant all privileges on *.* to ‘jirauser’@'localhost’ identified by
‘jira’with grant option;
flush privileges;
2、修改 JIRA 端口
JIRA 是集成在 Tomcat 上面的,所以修改端口的方法和 Tomcat 修改端口的方法
是一样的。
3、JIRA 默认使用的数据库是 HSql,如果要迁移到 MySQL,可以通过以下的配置
改动。
..............
- 上一篇: mariaDB数据库驱动jar包
- 下一篇: mysql与javajar包和代码.zip