Jira
安装
资源
github
docker hub
crack tool
最新的版本通过上面的链接获取
制作Docker破解容器
编写Dockerfile文件:
Copy FROM cptactionhank/atlassian-jira-software:8.1.0
USER root
# 将代理破解包加入容器
COPY "atlassian-agent.jar" /opt/atlassian/jira/
# 设置启动加载代理包
RUN echo 'export CATALINA_OPTS="-javaagent:/opt/atlassian/jira/atlassian-agent.jar ${CATALINA_OPTS}"' >> /opt/atlassian/jira/bin/setenv.sh
下载atlassian-agent.jar文件,放置在Dockerfile同目录下,例如:
Copy - JIRA
--Dockerfile
--atlassian-agent.jar
构建镜像,执行命令
Copy docker build -t jira/jira:v8.1.0 .
执行结果:
Copy Sending build context to Docker daemon 976.9kB
Step 1/4 : FROM cptactionhank/atlassian-jira-software:8.1.0
8.1.0: Pulling from cptactionhank/atlassian-jira-software
e7c96db7181b: Pull complete
f910a506b6cb: Pull complete
c2274a1a0e27: Pull complete
ad4c26f14427: Pull complete
9cf1f599e6aa: Pull complete
Digest: sha256:d22a123d5b9e45fb7338db171ffbb318efb593cef9ad72c359f7e0f028797bff
Status: Downloaded newer image for cptactionhank/atlassian-jira-software:8.1.0
---> f9f09151d8df
Step 2/4 : USER root
---> Running in 0e1a2a9ddcd5
Removing intermediate container 0e1a2a9ddcd5
---> a5e191f643a9
Step 3/4 : COPY "atlassian-agent.jar" /opt/atlassian/jira/
---> 756aa1b69f82
Step 4/4 : RUN echo 'export CATALINA_OPTS="-javaagent:/opt/atlassian/jira/atlassian-agent.jar ${CATALINA_OPTS}"' >> /opt/atlassian/jira/bin/setenv.sh
---> Running in ea5a4f7b83aa
Removing intermediate container ea5a4f7b83aa
---> a6f1e741d614
Successfully built a6f1e741d614
Successfully tagged jira/jira:v8.1.0
启动容器
Copy docker run --detach --publish 8080:8080 jira/jira:v8.1.0
访问http://127.0.0.1:8080,可见如下页面:
破解
复制服务器ID:BY9B-GWD1-1C78-K2DE
java -jar atlassian-agent.jar -d -m sphantix@gmail.com -n HP -p jira -o http://192.168.130.104 -s B2R9-9XR7-NDON-PTWZ
==================================================== ======= Atlassian Crack Agent ======= ======= https://zhile.io =======
======= QQ Group: 30347511 =======
Your license code(Don't copy this line!!!):
AAABpA0ODAoPeJyNkluPmzAQhd/5FUh9hsVsmoRIlroLSEUiJArsRX1zyCS4AmONTbrpr68JtN1LF K3EA7bmHH9zZr4UHdh3Em2f2GS28IKF+QnzwvY937MOCCCqVkpAN+UlCAXFSULGGqDharmMN2Fyl 1ohAtO8FRHTQHuh400cn1hXJBGoErnsVfRB1LzhGnZ2PQjs7cmutJZqcXPzu+I1uLy1lowLDYKJE uIXyfE0vjYPHG9mPusnR/aXMt7xwTpLk2VSxJGVdc0WcLV/UICKOv/grnhJbHddqd3+4Kh2r38xB PeD0ZVaVmp+BKqxgzdZvr6/IjdULATTNQ6lYzyP5uG+Od/Ku+3/GM8l8ZHV3XkYdM9qNdq/N1rhg Qmuhro+aRM0CXyXTOcuufVc4k2ssBXacMYm95oqWTGh+cu3Q2OObtk2g/HlMD7ZXq4Z9kgD6DiPJ KJpEuVx5qTk63w2mXpkSoKJ92a8lzYqBzwCGvm9vwmc4Hkzc7JolTnr4unHpUX+uCLrDsuKKXi/x q/F5xAlcjW2Z0DpBdgxvDPj9/UfXi0ouDAtAhR75zlKAr3oqyjWx62Iq8ccqh1TPwIVAIIDxTTMH GdaMje0mfqzqRQdXgkjX02k8
Copy 将生成的许可证复制到页面,完成破解。
### MySQL创建
```SQL
--创建jira数据库及用户
create database jiradb character set 'UTF8';
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;
-- 设置confdb事务级别
show variables like 'tx%';
set session transaction isolation level read committed;
show variables like 'tx%';