Jira5.0.2安装及破解

声明:如有侵犯之处Jira开源策略,请联系我
破解文章:《Jira 5 版本破解步骤过程》
系统:centos 5.7 – 64bit
Java环:境1.6.0_27-32bit(如果你的系统是64位,现建议不要安装64位JDK,会降低jira访问性能)
新版本插件安装破解与以往不同,所以请考虑。暂时未有破解插件安装方式) Greenhopper版本对照
下载两个最新包(tar)

wget http://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-5.0.4.tar.gz
wget http://www.atlassian.com/software/crowd/downloads/binary/atlassian-crowd-2.4.2.tar.gz

解压tar包

tar -zxvf  atlassian-jira-5.0.4.tar.gz -C  /usr/local/
tar -zxvf   atlassian-crowd-2.4.2.tar.gz  -C  /usr/local/

进入解压后的目录

[root@pek7-qat-01 ~]# cd   /usr/local/
[root@pek7-qat-01 local]# ln -s  atlassian-jira-5.0.4-standalone/  jira
[root@pek7-qat-01 local]# ln -s  atlassian-crowd-2.4.2/  crowd

创建速度库

mysql --user=root –p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 559 to server version: 5.0.13-rc-Debian_1-log
 
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
 
mysql> create database jiradb character set utf8;
Query OK, 1 row affected (0.02 sec)
 
mysql> GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER,INDEX on
  jiradb.* TO 'jirauser'@'localhost' IDENTIFIED BY 'mypassword';
Query OK, 0 rows affected (0.00 sec)
 
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
 
mysql> quit
Bye

测试一下

[root@pek7-qat-01 ~]# mysql \--user=jirauser \--password=mypassword \--database=jiradb
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 54
Server version: 5.0.95 Source distribution

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

如果测试出错

Access denied for user 'jirauser'@'localhost' (using password: YES)

修改一下数据库内的host记录

[root@pek7-qat-01 ~]# mysql  -u root  -p
Enter password:

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 55
Server version: 5.0.95 Source distribution

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> select  host,user  from mysql.user;
+-------------+----------+
| host        | user     |
+-------------+----------+
| 127.0.0.1   | root     | 
| localhost   | jirauser | 
| localhost   | root     | 
+-------------+----------+
7 rows in set (0.00 sec)
mysql> update user set host='localhost.localdomain' where user='jirauser';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.03 sec)

其他mysql信息请访问http://confluence.atlassian.com/display/JIRA/Setting+Up+a+MySQL+Database+on+Linux+for+JIRA,或者给我留言!

创建jira家目录

[root@pek7-qat-01 ~]# cd   /usr/local/
[root@pek7-qat-01 local]# cd  date/
[root@pek7-qat-01 date]# mkdir jira


在配置文件内添加家目录

[root@pek7-qat-01 date]# vim /usr/local/jira/atlassian-jira/WEB-INF/classes/jira-application.properties
jira.home = /usr/local/date/jira 

删除 /usr/local/jira/conf/server.xml内

                   minSpareThreads="25"
                   maxSpareThreads="75" 

如果,你喜欢破解这个jira程序。请访问本站破解教程《Jira 4 版本破解步骤过程》,已测试可以继续破解

进入bin目录下,启动服务/usr/local/jira/bin,记者看着屏幕哦~也许某个文件或者/tmp不可写错误!

./startup.sh && tail -f ../logs/ca*.*

一般都不会有问题的,启动成功后,访问: http://IP:8080 ,页面正常,则继续操作

选择配置外部数据库,如下图配置:

 Jira5.0安装及破解 for kinggoo.com

然后选择下一步,输入破解后的key,成功后,会跳到如下图所示:

  Jira5.0安装及破解 for kinggoo.com

继续下一步,然后是配置邮件,这个可以以后在配置,先禁用掉。直接完成!

进入欢迎界面,很炫丽哦

 Jira5.0安装及破解 for kinggoo.com

稍微试了一下,很智能啊!

Jira安装先结束,下章《Crowd2.4.2安装》

- THE END -
版权声明:
转载原创文章请注明,文章出处://kinggoo.com
原文地址:https://kinggoo.com/app-jira5installcrack.htm
发表评论?

4 条评论。

  1. 你好,我按照你的方法装的5.0.6,破解是破解了,但是无法安装插件,显示Failed to verify the license.

回复给 hubaomin ¬
取消回复


此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据