美文网首页
JIRE安装

JIRE安装

作者: wqq0916 | 来源:发表于2018-03-11 07:54 被阅读34次

1. 安装参数

image.png
mysql -uroot -p
create user  'jiraUser'@'localhost' identified by 'Unlimax';
create database jire character set utf8 collate utf8_bin;
grant select,insert,update,delete,create,drop,alter,index on  jire.* to 'jiraUser'@'localhost'  identified by 'Unlimax';
flush privileges;

2. 数据库准备

create database wqqjire default charset=utf8;
grant all on wqqjire.* to 'admin123'@'%' identified by 'wqqadmin';
grant all on wqqjire.* to 'admin123'@'localhost' identified by 'wqqadmin';
show grants for admin123;
flush privileges;

3. 安装记录

image.png
Installation Directory: /opt/atlassian/jira 
Home Directory: /var/atlassian/application-data/jira 
HTTP Port: 8080 
RMI Port: 8005 

image.png image.png image.png image.png

wqq0916

相关文章

网友评论

      本文标题:JIRE安装

      本文链接:https://www.haomeiwen.com/subject/avnemxtx.html