Jira Data Center (non-cluster) upgrade operations

1. Upgrade preparation Jira management interface performs upgrade check Download the upgrade package and install it using the same method as the original operation. The original version I have here is installed through ./atlassian-jira-software-9.11.2-x64.bin. Next, download the installation of atlassian-jira-software-9.11.3-x64.bin. File, download address https://downloads.atlassian.com/software/jira/downloads/atlassian-jira-software-9.11.3-x64.bin Stop Jira, bin/stop-jira.sh Use mysqldump -u root -p –all-databases | gzip […]

The latest versions of confluence7.19.4 and jira9.4 in 2023 are cracked and use Nginx proxy

Background slightly Installation jira Prepare two directories, one is the installation directory of jira, and the other is the home directory of jira. The data is stored in the home directory. /data/jira /data/jira_home Download, unzip wget https://product-downloads.atlassian.com/software/jira/downloads/atlassian-jira-software-9.4.1.tar.gz tar zxvf atlassian-jira-software-9.4.1.tar.gz Add to the file /atlassian-jira/WEB-INF/classes/jira-application.properties jira.home=/data/jira_home Add the cracking program to /bin/setenv.sh CATALINA_OPTS=”-javaagent:/opt/atlassian-agent.jar ${CATALINA_OPTS}” Place […]

jira search search issue entry rest practical script

Official document link address: The Jira Cloud platform REST API The practical json request script is as follows: { “fields”: [ “summary”, “status” ], “jql”: “project = abc AND summary ~ ‘[%s][coverity]’ AND component=Coverity”, “maxResults”: 1000, “startAt”: 0 } The jql field is an expression, similar to the where condition setting statement in the sql […]

Jira creates entry rest practical script

Recently, I have been doing crash analysis and directly entered the analyzed information into the jira system for tracking; After many encounters with the wall, I finally got through it. Now I’ll record it. The practical json request script is as follows: { “fields”:{ “project”:{ “id”:”10945″ }, “issuetype”:{ “id”:”10103″ }, “summary”:”%s”, “description”:”%s”, “components”:[ { “id”:”16001″ […]

Java–Java connects to Jira, creates, modifies, and deletes work order information

Students who don’t know what Jira is can read this article: https://www.cnblogs.com/wgblog-code/p/11750767.html This article mainly introduces how to use Java to operate Jira, including obtaining connections, creating, modifying, and deleting work order information. 1. Get the Jira connection and execute the request: /** * Execute the shell script * * @param command * @return * […]

jira java create issue_jira java interface generate issue

JIRA is a defect tracking management system, which is widely used in defect tracking, customer service, requirements collection, process approval, task tracking, project tracking and agile management. When we need to integrate third-party business systems, we can call his API. The API of JIRA itself is very powerful, but it is a low-level API system, […]

[Actual Combat] 10. Use react-query to obtain data and manage cache (Part 2) — React17+React Hook+TS4 best practice, imitating Jira enterprise-level projects (22)

Article directory 1. Project launch: project initialization and configuration 2. React and Hook application: implement the project list 3. TS Application: JS God Assist – Strong Type 4. JWT, user authentication and asynchronous request 5. CSS is actually very simple – add styles with CSS-in-JS 6. User Experience Optimization – Loading and Error Status Handling […]

[Practice] 10. Use react-query to obtain data and manage cache (Part 1) — React17+React Hook+TS4 best practice, imitating Jira enterprise-level projects (21)

Article directory 1. Project launch: project initialization and configuration 2. React and Hook application: implement the project list 3. TS Application: JS God Assist – Strong Type 4. JWT, user authentication and asynchronous request 5. CSS is actually very simple – add styles with CSS-in-JS 6. User Experience Optimization – Loading and Error Status Handling […]

Jira, Confluence data migration

Jira, Confluence data migration jira is simply a defect tracking, customer service, requirements collection, process approval, task tracking, project tracking and agile management system! ! ! Confluence is used to share information, document collaboration, brainstorming, and push information! ! ! During this period of time, the company’s daily newspaper system needs to migrate data from […]