### Start Fisheye Application (Linux) Source: https://confluence.atlassian.com/jira/integrating-jira-with-apache-185729645.html Use this command to start Fisheye on Linux systems. Execute from the Fisheye installation directory. ```bash bin/start.sh ``` -------------------------------- ### Start Bamboo Application (Linux) Source: https://confluence.atlassian.com/jira/integrating-jira-with-apache-185729645.html Use this command to start the Bamboo application on Linux systems. Execute from the Bamboo installation directory. ```bash bin/start-bamboo.sh ``` -------------------------------- ### Start JIRA Application (Linux) Source: https://confluence.atlassian.com/jira/integrating-jira-with-apache-185729645.html Use this command to start the JIRA application on Linux systems. Execute from the JIRA installation directory. ```bash bin/start-jira.sh ``` -------------------------------- ### Start Fisheye Application (Windows) Source: https://confluence.atlassian.com/jira/integrating-jira-with-apache-185729645.html Use this command to start Fisheye on Windows systems. Execute from the Fisheye installation directory. ```batch bin\start.bat ``` -------------------------------- ### Start Bamboo Application (Windows) Source: https://confluence.atlassian.com/jira/integrating-jira-with-apache-185729645.html Use this command to start the Bamboo application on Windows systems. Execute from the Bamboo installation directory. ```batch bin\start-bamboo.bat ``` -------------------------------- ### Start JIRA Configuration Tool on Windows Source: https://confluence.atlassian.com/jira/configuring-your-jira-installation-186712191.html Run the configuration tool on Windows by navigating to the JIRA installation's bin directory and executing config.bat. ```batch config.bat ``` -------------------------------- ### Start Crowd Application (Linux) Source: https://confluence.atlassian.com/jira/integrating-jira-with-apache-185729645.html Use this command to start Crowd on Linux systems. Execute from the Crowd installation directory. ```bash /start_crowd.sh ``` -------------------------------- ### Start Confluence Application (Linux) Source: https://confluence.atlassian.com/jira/integrating-jira-with-apache-185729645.html Use this command to start the Confluence application on Linux systems. Execute from the Confluence installation directory. ```bash bin/start-confluence.sh ``` -------------------------------- ### Start JIRA Application (Windows) Source: https://confluence.atlassian.com/jira/integrating-jira-with-apache-185729645.html Use this command to start the JIRA application on Windows systems. Execute from the JIRA installation directory. ```batch bin\start-jira.bat ``` -------------------------------- ### Example server.xml with HTTP, HTTPS, and AJP Connectors Source: https://confluence.atlassian.com/jirakb/unable-to-upgrade-to-jira-4-4-due-to-problems-reading-the-installation-directory-249858149.html This is an example of a server.xml configuration that includes HTTP, HTTPS, and AJP connectors. It demonstrates how to structure these configurations within the Tomcat service element. This configuration is provided as a reference for users who may have complex connector setups. ```xml ... ``` -------------------------------- ### Start JIRA Configuration Tool on Linux/Unix Source: https://confluence.atlassian.com/jira/configuring-your-jira-installation-186712191.html Execute the configuration tool on Linux/Unix systems by navigating to the JIRA installation's bin directory and running config.sh. ```shell config.sh ``` -------------------------------- ### JVM Startup Parameter Example Source: https://confluence.atlassian.com/jirakb/jira-node-inaccessible-for-maintenance-but-node-is-not-re-indexing-1095241438.html This example shows the JVM startup parameter '-Djava.rmi.server.hostname'. If this parameter is in use, ensure it is set to a correct IP address or a resolvable hostname for proper cluster communication. ```bash -Djava.rmi.server.hostname ``` -------------------------------- ### JIRA 4.4+ dbconfig.xml Direct JDBC Connection Example Source: https://confluence.atlassian.com/jira/jira-4-4-upgrade-notes-235667473.html This XML snippet demonstrates a direct JDBC connection configuration for JIRA 4.4 and later. Ensure this file is correctly configured before starting an upgraded JIRA installation. ```xml defaultDS default hsql PUBLIC jdbc:hsqldb:C:\Program Files\Atlassian Application Data\JIRA/database/jiradb org.hsqldb.jdbcDriver sa 15 select 1 4000 5000 SetBigStringTryClob= true ``` -------------------------------- ### Example response for Get contexts for a field Source: https://confluence.atlassian.com/jirakb/how-to-identify-field-related-information-such-as-field-name-custom-field-id-context-information-etc-via-jira-cloud-rest-api-1267336419.html This is an example JSON response when successfully retrieving contexts for a custom field. ```json { "isLast": false, "maxResults": 1, "startAt": 0, "total": 5, "values": [ { "id": 10001, "name": "Default Context" } ] } ``` -------------------------------- ### Start Jira on Windows Source: https://confluence.atlassian.com/jiracore/upgrading-jira-server-976161476.html Run this batch file from the `/bin` folder to start Jira on a Windows system. ```batch start-jira.bat ``` -------------------------------- ### Example JAVA_HOME for JIRA Source: https://confluence.atlassian.com/jirakb/how-to-change-the-java-version-used-by-jira-server-and-data-center-765594330.html An example of setting JAVA_HOME for JIRA on a macOS system with a specific JDK version. ```bash JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home" ``` -------------------------------- ### Start Crowd Application (Windows) Source: https://confluence.atlassian.com/jira/integrating-jira-with-apache-185729645.html Use this command to start Crowd on Windows systems. Execute from the Crowd installation directory. ```batch \start-crowd.bat ``` -------------------------------- ### Jira Standalone Installation Instructions Source: https://confluence.atlassian.com/jira/important-security-patch-for-jira-versions-3-7-x-3-8-x-57802955.html For Jira Standalone installations, download the patch, extract files to the specified directory, and restart Jira. ```bash 1. Download the attached patch zip file 2. Extract the contained files to /atlassian-jira/WEB-INF/classes/ overwriting the files there 3. Restart JIRA ``` -------------------------------- ### Install Compiler and Build Tools Source: https://confluence.atlassian.com/jirakb/integrating-jira-with-cvs-and-viewcvs-notes-406225605.html Installs GCC and Make, essential for compiling C/C++ code. Ensure these are present before attempting to compile from source. ```bash yum install gcc make #install the compiler ``` -------------------------------- ### Start Jira on Linux Source: https://confluence.atlassian.com/jiracore/upgrading-jira-server-976161476.html Execute this shell script from the `/bin` directory to start Jira on a Linux system. ```shell start-jira.sh ``` -------------------------------- ### Jira WAR Distribution Installation Instructions Source: https://confluence.atlassian.com/jira/important-security-patch-for-jira-versions-3-7-x-3-8-x-57802955.html For WAR distribution installations, download and extract the patch, run clean build scripts, build the application, redeploy the WAR, and restart the application server. ```bash 1. Download the attached patch zip file 2. Extract the contained files to /atlassian-jira/WEB-INF/classes/ overwriting the files there 3. Run 'build.sh clean' on unix or 'build.bat clean' on windows 4. Run 'build.sh' on unix or 'build.bat' on windows 5. Redeploy the JIRA web app into your application server 6. Restart the application server ``` -------------------------------- ### Start Confluence Application (Windows) Source: https://confluence.atlassian.com/jira/integrating-jira-with-apache-185729645.html Use this command to start the Confluence application on Windows systems. Execute from the Confluence installation directory. ```batch bin\start-confluence.bat ``` -------------------------------- ### Set an Example Property for a Jira Project using cURL Source: https://confluence.atlassian.com/jirakb/using-proforma-data-connections-with-jira-property-1425670614.html An example of setting a property named `exampleProperty` with the value `exampleValue` for a Jira project using cURL. ```bash curl -u yourUsername:yourPassword -X PUT --data '{"value": "exampleValue"}' -H "Content-Type: application/json" https://your-jira-instance.com/rest/api/2/project/AS/properties/exampleProperty ``` -------------------------------- ### Jira Configuration Properties Example Source: https://confluence.atlassian.com/jiracore/oauth-2-0-integration-for-developers-1005784188.html This example demonstrates the format for setting advanced configuration options in the jira-config.properties file. Ensure Jira is restarted after modifying this file. ```properties jira.projectkey.warning = testwarning jira.projectkey.description = testdescription ... atlassian.oauth2.client.unrecoverable.token.failing.period.days = 7 ``` -------------------------------- ### Configure Jira Project Key Pattern Source: https://confluence.atlassian.com/jirakb/quick-search-issue-fails-771894346.html This is an example of a properly configured project key pattern. Ensure your `jira.projectkey.pattern` setting matches this format or a similar valid pattern to resolve quick search issues. ```regex (`[A-Z][A-Z_0-9]+`) ``` -------------------------------- ### Example response for Get field project associations Source: https://confluence.atlassian.com/jirakb/how-to-identify-field-related-information-such-as-field-name-custom-field-id-context-information-etc-via-jira-cloud-rest-api-1267336419.html This is an example JSON response when successfully retrieving project associations for a custom field. ```json { "isLast": false, "maxResults": 50, "startAt": 0, "total": 2, "values": [ { "projectId": "10010" }, { "projectId": "10020" } ] } ```