JIRA software is built for each member of your software team to plan, track, and release excellent software.
Minimal hardware dependency
# Note: jira requires oracle java,The default openjdk will not work
# http://www.oracle.com/technetwork/java/javase/downloads/index.html, download jdk-8u131-linux-x64.rpm, then upload to/usr/local/src
yum localinstall jdk-8u131-linux-x64.rpm -y
# Check whether the jdk is installed successfully
# java -version
java version "1.8.0_131"Java(TM) SE Runtime Environment(build 1.8.0_131-b11)
Java HotSpot(TM)64-Bit Server VM(build 25.131-b11, mixed mode)
Note: jira supports 5.7, but Confluence does not support 5.7, so install mysql5 here. Download mysql yum package https://dev.mysql.com/downloads/ installation
# Server configuration mysql repo source, https://dev.mysql.com/downloads/repo/yum/, Download mysql57-community-release-el6-11.noarch.rpm then upload to/usr/local/src
# 5 is enabled by default.7, change to 5.6[mysql56-community]
name=MySQL 5.6 Community Server
baseurl=http://repo.mysql.com/yum/mysql-5.6-community/el/7/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql[mysql57-community]
name=MySQL 5.7 Community Server
baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/7/$basearch/
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql-----------------
# Install mysql
yum clean all && yum install mysql-community-server -y
# Start mysql and set self-start
# /etc/init.d/mysqld start
Initializing MySQL database:/usr/bin/mysqladmin -u root password 'new-password'/usr/bin/mysqladmin -u root -h sh-kvm-3-1 password 'new-password'
Alternatively you can run:/usr/bin/mysql_secure_installation
- - defaults-file argument to mysqld_safe when starting the server
[ OK ]
Starting mysqld:[ OK ]
# Initialize mysql and reset password
/usr/bin/mysql_secure_installation
# Create jira database and jira user
mysql -uroot -p'211212'-e "CREATE DATABASE jira CHARACTER SET utf8 COLLATE utf8_bin;grant all on jira.* to 'jira'@'%' identified by 'jirapasswd';"
# Test jira to connect to mysql
mysql -ujira -pjirapasswd #connection succeeded
JIRA download address: https://www.atlassian.com/software/jira/download, download, then upload to /usr/local/src
wget https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-7.4.1-x64.bin
cd /usr/local/src
chmod a+x atlassian-jira-software-7.4.1-x64.bin
sudo ./atlassian-jira-software-7.4.1-x64.bin
# Use default installation,The installation will start jira
/opt/atlassian/jira/bin/stop-jira.sh #Stop jira
/opt/atlassian/jira/bin/start-jira.sh #Start jira
langguage can choose language, support Chinese by default, choose to install by yourself, and then continue
Note: In the Mode in the above figure, we are using Private mode here. In this mode, the creation of users needs to be created by the administrator. In Public mode, users can register themselves.
Note: The Server ID in the picture above: BC2Z-EHVP-ERV0-RQUY
Because we do not have a formal license, we need to register an account on the jira official website, and then use this account to apply for a 30-day trial license, as follows:
Note: The Server ID in this figure is the Server ID in the screenshot above.
Click Generate License
Forgot to take a screenshot of the page for setting the administrator, you can ignore it here, set up an email notification later, and click Continue to display the welcome interface. Choose Chinese to continue:
To crack jira, we have already cracked it. In the above section, we copied atlassian-extras-3.2.jar to the /opt/atlassian/jira/atlassian-jira/WEB-INF/lib/ directory, and when jira was started again, it was already cracked Up.
At this point, the installation and cracking of jira is basically completed, wait for the Baidu cloud link to crack jira to be released,
Link: http://pan.baidu.com/s/1i5kRZgT Password: 5d4g
https://www.ilanni.com/?p=12119https://confluence.atlassian.com/jirakb/integrating-jira-with-nginx-426115340.html
Recommended Posts