Jira installation and configuration - the most detailed tutorial (test wooden man)

Welcome everyone to read this tutorial, absolutely detailed

Table of contents

1. Introduction to Jira

Two, JAVA (JDK) installation

3. Download and install MySQL database

4. Download and install Jira


Let me add here first: After a friend reported that there was a problem with the database

解决:ERROR 1044(42000): Access denied for user ''@'localhost' to database ‘mytestsql’

The root cause of the error: the administrator user is used to log in, but this user only has the usage permission and does not have the create permission.

If there is a database error, try to use the administrator account to execute cmd, enter: mysql -hlocalhost -uroot -p;

1. Introduction to Jira

        JIRA is a project and transaction tracking tool produced by Atlassian. It is widely used in defect tracking, customer service, demand collection, process approval, task tracking, project tracking and agile management. It has flexible configuration, comprehensive functions, simple deployment, and Rich in extensions. "Jira makes your work really efficient!. Less time, higher performance..". JIRA can also be defined as Professional Issue Tracker, that is, it is a professional issue tracking management software. The English word corresponding to the "problem" here is Issue, so it has a wider meaning, including Bug, Task, Enhancement, Improvement and other terms related to software development. . Tracking management refers to recording and managing the entire life cycle of problems.

Two, JAVA (JDK) installation

First you need to install JDK, please refer to the installation tutorial: https://blog.csdn.net/qq_59344199/article/details/128023120?spm=1001.2014.3001.5501

The operation of Jira depends on the java environment, that is to say, JDK needs to be installed and version 1.8 or above.

3. Download and install MySQL database

Install MySQL reference tutorial: https://blog.csdn.net/qq_59344199/article/details/127558950?spm=1001.2014.3001.5501

It is recommended that you use MySQL 5.6 for the database version. If the version is too high, sometimes you may not be able to connect.

After we configure the MySQL database, we need to create a corresponding database, user name and password for Jira.

Create a database:

create database display default character set utf8 collate utf8_bin;grant all on display.* to 'exists@'%' identified by 'existspasswd';

After the creation is successful, let's check:

Created successfully.

After the above is ready, let's start downloading and installing Jira.

4. Download and install Jira

Jira Baidu network disk download address: https://pan.baidu.com/s/15tnSXxPzy1yBtDUVZEM6FA

Extraction code: 1111

After the download is complete, we directly unzip it

start installation: 

1. Double-click atlassian-jira-software-8.4.1-x64.exe

if pop up

 Everyone click NO, and then double-click to run as a plumber: atlassian-jira-software-8.4.1-x64.exe

correct interface

2. Let's click Next

 3. Select Custom Installation and click Next

4. Select the installation path and click Next 

5. This is the default location for attachments, Xilbaclups, plugins and indexes, make sure this location is not used by other JIRA installations.

6. Click Next

7. Modify the port numbers: 8888 and 8005

8. Allow access

9. Next step

10. Installation

11. Next step 

12. Done

13. Let's start configuring our Jira

 After completion, the browser will pop up, please close the browser first, because we are going to start working on technology

解决:ERROR 1044(42000): Access denied for user ''@'localhost' to database ‘mytestsql’

The root cause of the error: the administrator user is used to log in, but this user only has the usage permission and does not have the create permission.

If there is a database error, try to use the administrator account to execute cmd, enter: mysql -hlocalhost -uroot -p;

14. First shut down the service

double click 

 

15. After closing our service, open the installation package we downloaded

16. Copy these two jar files to the lib folder in our Jira 

 

17. After completion, we will start the service again

18. Double click

 

After the black window pops up, it will automatically close after the startup is complete

19. After completion, we open the browser and enter: visit http://localhost:8888, enter the Jira configuration interface, indicating that Jira has been installed.

20. Select: I will set it up myself and click Next

21. Set up the database 

Since the wooden man did not set a password when installing the MySQL database, I do not need to enter a password here

22. Click Next

23. Select development and click Next

24. Generate a license

Then let's register an account, just have an email address, the registration address: my.atlassian.com/ 

After registering according to the normal process, it will also jump to the normal page

After the registration is complete or after the login is successful, click: Generate Jira license

25. Click Generate Jira Trial License

26. After jumping to the webpage, click yes, the waiting time is a bit long, please wait patiently

27. After generating the license, click Next (wait patiently)

28. Enter the corresponding information

29. Click Finish

30. Select language

31. Select the avatar and click Next

32. Create a project

33. Click Next

34. Click to select

35. Enter the name and click Submit

 It's done, it's done here

If you have any questions, please comment or private message the wooden man

Finally, I wish you all the best on the computer road! ! !

Finally, I wish you all the best on the computer road! ! !

Finally, I wish you all the best on the computer road! ! !

Guess you like

Origin blog.csdn.net/qq_59344199/article/details/128074434