原文:http://kinggoo.com/app-jira5-0-2install.htm/comment-page-1
声明:如有侵犯之处Jira开源策略,请联系我
破解文章:《Jira 5 版本破解步骤过程》 Crowd2.4.2安装破解
系统:centos 5.7 – 64bit
Java环:境1.6.0_27-32bit(如果你的系统是64位,现建议不要安装64位JDK,会降低jira访问性能)
下载最新包(tar)
新版本插件安装破解与以往不同,所以请考虑。暂时未有破解插件安装方式) Greenhopper版本对照
1
|
wget
http
:
//www.atlassian.com/software/jira/downloads/binary/atlassian-jira-5.0.4.tar.gz
|
解压tar包
1
|
tar
-
zxvf
atlassian
-
jira
-
5.0.4.tar.gz
-
C
/
usr
/
local
/
|
进入解压后的目录
1
2
3
|
[
root
@
kinggoo
.com
~
]
# cd /usr/local/
[
root
@
kinggoo
.com
local
]
# ln -s atlassian-jira-5.0.4-standalone/ jira
[
root
@
kinggoo
.com
local
]
# ln -s atlassian-crowd-2.4.2/ crowd
|
创建速度库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
|
测试一下
1
2
3
4
5
6
7
8
9
10
11
12
|
[
root
@
kinggoo
.com
~
]
# 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
.
|
如果测试出错
1
|
Access
denied
for
user
'jirauser'
@
'localhost'
(
using
password
:
YES
)
|
修改一下数据库内的host记录
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
[
root
@
kinggoo
.com
~
]
# 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家目录
1
2
3
|
[
root
@
kinggoo
.com
~
]
# cd /usr/local/
[
root
@
kinggoo
.com
local
]
# cd date/
[
root
@
kinggoo
.com
date
]
# mkdir jira
|
在配置文件内添加家目录
1
2
|
[
root
@
kinggoo
.com
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内
1
2
|
minSpareThreads
=
"25"
maxSpareThreads
=
"75"
|
如果,你喜欢破解这个jira程序。请访问本站破解教程《Jira 4 版本破解步骤过程》,已测试可以继续破解
进入bin目录下,启动服务/usr/local/jira/bin,记者看着屏幕哦~也许某个文件或者/tmp不可写错误!
1
|
[
root
@
kinggoo
.com
bin
]
# ./startup.sh && tail -f ../logs/ca*.*
|
一般都不会有问题的,启动成功后,访问: http://IP:8080 ,页面正常,则继续操作
选择配置外部数据库,如下图配置:
然后选择下一步,输入破解后的key,成功后,会跳到如下图所示:
继续下一步,然后是配置邮件,这个可以以后在配置,先禁用掉。直接完成!
稍微试了一下,很智能啊!
Jira安装先结束,下章《Crowd2.4.2安装》
1
2
3
4
|
JIRA
5.0版本
http
:
//www.confluence.cn/download/attachments/16908366/JIRA-5.0-language-pack-zh_CN.jar
JIRA
5.0.1
版本
http
:
//www.confluence.cn/download/attachments/16908366/JIRA-5.0.1-language-pack-zh_CN.jar
|