JIRA is a commercial software application developed by Atlassian for issue tracking and project management. It is available as a Trial version for a limited time. It is used in Support and Customer Services to create tickets and track the status of the created tickets. It provides a web-based interface to track work progress and issues. Its features include Bug and defect management, Advanced Security, Advanced reporting, Customizable dashboards, Search and filtering, Customizable workflows and administration, and many more.
In this video you will learn how to install the JIRA project management tool on Ubuntu 22.04 server
Commands Used
apt-get install mysql-server -y
systemctl status mysql
mysql
CREATE DATABASE jira CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
CREATE USER 'jira'@'localhost' IDENTIFIED BY 'password';
GRANT ALL ON jira.* TO 'jira'@'localhost' WITH GRANT OPTION;
FLUSH PRIVILEGES;
Exit;
wget
https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-9.0.0-x64.bin
chmod a+x atlassian-jira-software-9.0.0-x64.bin
./atlassian-jira-software-9.0.0-x64.bin
ss -antpl | grep java
wget
https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-8.0.18.zip
unzip mysql-connector-java-8.0.18.zip
cp mysql-connector-java-8.0.18/mysql-connector-java-8.0.18.jar /opt/atlassian/jira/lib
/etc/init.d/jira stop
/etc/init.d/jira start
Useful Links
VPS/VDS -
https://www.mivocloud.com/
Тэги:
#Ubuntu #Linux #VPS #VDS #Server #Hosting #Management #Jira