Jira安装和破解过程和Confluence安装差不多。

环境准备

1
2
3
[root@confluence ~]# cat /etc/redhat-release
CentOS Linux release 7.8.2003 (Core)
[root@confluence ~]# yum install -y java-1.8.0-openjdk unzip

准备数据库

Mysql 5.7安装和配置可以参考Confluence安装过程中的步骤。

  • 创建Jira数据库和用户

    1
    2
    3
    4
    5
    
    mysql> CREATE DATABASE jira CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
    Query OK, 1 row affected (0.00 sec)
    GRANT ALL PRIVILEGES ON jira.* TO 'jira'@'localhost' IDENTIFIED BY 'jira@password';
    mysql> GRANT ALL PRIVILEGES ON jira.* TO 'jira'@'localhost' IDENTIFIED BY 'jira@password';
    Query OK, 0 rows affected, 1 warning (0.00 sec)
    

安装Jira

  1. 准备安装包

  2. 赋予安装文件可执行权限

    1
    
     chmod +x atlassian-jira-software-8.5.5-x64.bin
    
  3. 执行安装

     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
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    
    [root@confluence ~]# ./atlassian-jira-software-8.5.5-x64.bin
    Unpacking JRE ...
    Starting Installer ...
    
    This will install JIRA Software 8.5.5 on your computer.
    OK [o, Enter], Cancel [c]
    o
    Click Next to continue, or Cancel to exit Setup.
    
    Choose the appropriate installation or upgrade option.
    Please choose one of the following:
    Express Install (use default settings) [1], Custom Install (recommended for advanced users) [2, Enter], Upgrade an existing JIRA installation [3]
    1
    
    Details on where JIRA Software will be installed and the settings that will be used.
    Installation Directory: /opt/atlassian/jira
    Home Directory: /var/atlassian/application-data/jira
    HTTP Port: 8080
    RMI Port: 8005
    Install as service: Yes
    Install [i, Enter], Exit [e]
    i
    
    Extracting files ...
    
    
    Please wait a few moments while JIRA Software is configured.
    
    Installation of JIRA Software 8.5.5 is complete
    Start JIRA Software 8.5.5 now?
    Yes [y, Enter], No [n]
    y
    
    Please wait a few moments while JIRA Software starts up.
    Launching JIRA Software ...
    
    Installation of JIRA Software 8.5.5 is complete
    Your installation of JIRA Software 8.5.5 is now ready and can be accessed
    via your browser.
    JIRA Software 8.5.5 can be accessed at http://localhost:8080
    Finishing installation ...
    
  4. 安装mysql驱动

    1
    
    [root@confluence ~]# cp mysql-connector-java-5.1.49/mysql-connector-java-5.1.49.jar /opt/atlassian/jira/atlassian-jira/WEB-INF/lib/
    
  5. 重启服务使驱动生效

    1
    2
    
    [root@confluence ~]# /etc/init.d/jira stop
    [root@confluence ~]# /etc/init.d/jira start
    

破解

破解过程和Confluence破解一样,agent的安装过程就不介绍了

  1. agent安装

    • 见Confluence安装
  2. 生成License Key

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    
    [root@confluence ~]#  java -jar /opt/atlassian/atlassian-agent.jar -p jira -m xnile@dianduidian.com -n xnile -o xnile -s BCN4-R0OE-PS7E-YTFY
    
    ====================================================
    =======        Atlassian Crack Agent         =======
    =======           https://zhile.io           =======
    =======          QQ Group: 30347511          =======
    ====================================================
    
    Your license code(Don't copy this line!!!):
    
    AAABgg0ODAoPeJx9kl1rgzAUhu/zK4Rdx2m/VxC2aQYOP8a0g16metpm2CgnsVv366fVQbuWQiDkk
    Pc9T96cu7QG47WWxtAybHs+tOfW2HCT1BhYA4tsEEBuy6oCNAORgVSQHiqI+A4cNw5D9u76TwFxE
    bgWpfS4BqcVUmtChxa5IfFAZSiqVuUsZCF2QkNuFJ3AWB2MrdaVmt/f/2xFAaYoSciF1CC5zIB9V
    wIPfbfZA7WmzSKfAvkfJctFZx0FfuinzCNRvVsBxuuFAlQOtf/gbnhVWOZ1ps32QFW51l8cwbwwu
    nGXZ1rswdFYw1mWp/X+zR+NW0s8IGzPi/qYp7PmhQIS44ZLobrSt2zyIG4pdWPCmlCKrvSYCy7zW
    rSbmZW7Dus67Gn7G/SJ5qgBe4o+L99zAt9LWEQDe/wwHM2ms8l4MjqP/9qPJ4B7wEb+7EYj+m7Fj
    L4lU0aX6cvy2qBdfuFbjdmWK/g/ZqdiaGYEKxSqf14D6lyB7fM7Mh7j+wWmbAlCMCwCFAHVFrAHS
    rb08ptkVb65IsyY1rRyAhRxto+QedW0N/uooO4VLgWl1d3BVw==X02iq
    

    image-20200630113144125

参考

https://blog.dianduidian.com/post/confluence%E5%AE%89%E8%A3%85/