You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jira/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Running tests
2
2
## Pre-requisites
3
-
* Working Jira Software, version 8.0.3 with users, issues, projects, and boards, etc.
3
+
* Working Jira Software of supported version (see toolkit README.md for a list of supported Jira versions) with users, issues, projects, and boards, etc.
4
4
* Client machine with 4 CPUs and 16 GBs of RAM to run the Toolkit.
5
5
* Virtual environment with Python3.6+ and bzt installed. See the root `README.md` file for more details.
Copy file name to clipboardExpand all lines: jira/dc-apps-performance-toolkit-user-guide.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,12 +47,12 @@ All important parameters are listed and described in this section. For all other
47
47
| Parameter | Recommended Value |
48
48
| --------- | ----------------- |
49
49
| Jira Product | Software |
50
-
| Jira Version | 8.0.3 |
50
+
| Jira Version | 8.0.3 or 7.13.6 |
51
51
52
52
The Data Center App Performance Toolkit officially supports:
53
53
54
-
- The latest Jira GA (General Availability release) version: 8.0.3
55
-
- The latest [Enterprise Release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): 7.13
54
+
- The latest Jira Platform Release version: 8.0.3
55
+
- The latest Jira [Enterprise Release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): 7.13.6
56
56
57
57
**Cluster nodes**
58
58
@@ -159,7 +159,7 @@ All the datasets use the standard `admin`/`admin` credentials.
159
159
160
160
Pre-loading the dataset is a three-step process:
161
161
162
-
1.[Importing the main dataset](#importingdataset). To help you out, we provide an enterprise-scale dataset you can import either via the [populate_db.sh](https://github.com/atlassian/dc-app-performance-toolkit/blob/master/jira/util/populate_db.sh) script or [xml_backup.zip](https://centaurus-datasets.s3.amazonaws.com/jira/8.0.3/large/xml_backup.zip).
162
+
1.[Importing the main dataset](#importingdataset). To help you out, we provide an enterprise-scale dataset you can import either via the [populate_db.sh](https://github.com/atlassian/dc-app-performance-toolkit/blob/master/jira/util/populate_db.sh) script or restore from xml backup file.
163
163
1.[Restoring attachments](#copyingattachments). We also provide attachments, which you can pre-load via an [upload_attachments.sh](https://github.com/atlassian/dc-app-performance-toolkit/blob/master/jira/util/upload_attachments.sh) script.
164
164
1.[Re-indexing Jira Data Center](#reindexing). For more information, go to [Re-indexing Jira](https://confluence.atlassian.com/adminjiraserver/search-indexing-938847710.html).
165
165
@@ -185,11 +185,11 @@ To populate the database with SQL:
185
185
186
186
For Windows, use Putty to connect to the Jira node over SSH.
For more information, go to [Connecting your nodes over SSH](https://confluence.atlassian.com/adminjiraserver/administering-jira-data-center-on-aws-938846969.html#AdministeringJiraDataCenteronAWS-ConnectingtoyournodesoverSSH).
195
195
1. Download the [populate_db.sh](https://github.com/atlassian/dc-app-performance-toolkit/blob/master/jira/util/populate_db.sh) script and make it executable:
@@ -203,14 +203,13 @@ To populate the database with SQL:
For more information, go to [Connecting your nodes over SSH](https://confluence.atlassian.com/adminjiraserver/administering-jira-data-center-on-aws-938846969.html#AdministeringJiraDataCenteronAWS-ConnectingtoyournodesoverSSH).
246
-
1. Download the [xml_backup.zip](https://centaurus-datasets.s3.amazonaws.com/jira/8.0.3/large/xml_backup.zip) file.
245
+
1. Download the xml_backup.zip file corresponding to your Jira version.
247
246
248
247
``` bash
249
-
sudo su jira -c "wget https://centaurus-datasets.s3.amazonaws.com/jira/8.0.3/large/xml_backup.zip -O /media/atl/jira/shared/import"
248
+
JIRA_VERSION=$(sudo su jira -c "cat /media/atl/jira/shared/jira-software.version")
249
+
sudo su jira -c "wget https://centaurus-datasets.s3.amazonaws.com/jira/${JIRA_VERSION}/large/xml_backup.zip -O /media/atl/jira/shared/import/xml_backup.zip"
250
250
```
251
251
1. From a different computer, log in as a user with the **Jira System Administrators** [global permission](https://confluence.atlassian.com/adminjiraserver/managing-global-permissions-938847142.html).
252
252
1. Go to ** > System > Restore System.** from the menu.
@@ -261,11 +261,11 @@ After [Importing the main dataset](#importingdataset), you'll now have to pre-lo
261
261
262
262
For Windows, use Putty to connect to the Jira node over SSH.
For more information, go to [Connecting your nodes over SSH](https://confluence.atlassian.com/adminjiraserver/administering-jira-data-center-on-aws-938846969.html#AdministeringJiraDataCenteronAWS-ConnectingtoyournodesoverSSH).
271
271
1. Download the [upload_attachments.sh](https://github.com/atlassian/dc-app-performance-toolkit/blob/master/jira/util/upload_attachments.sh) script and make it executable:
@@ -276,7 +276,7 @@ After [Importing the main dataset](#importingdataset), you'll now have to pre-lo
276
276
1. Review the following `Variables section` of the script:
1. Once you're in the second node, download the [index-sync.sh](https://raw.githubusercontent.com/atlassian/dc-app-performance-toolkit/master/jira/util/index-sync.sh) file. Then, make it executable and run it:
0 commit comments