<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>jira project managmement Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/jira-project-managmement/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Mon, 11 Jan 2021 10:40:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Install Jira Agile Project Management  On Ubuntu 20.04</title>
		<link>https://www.osradar.com/install-jira-agile-project-management-on-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/install-jira-agile-project-management-on-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[sabi]]></dc:creator>
		<pubDate>Mon, 11 Jan 2021 10:40:18 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how to install jira]]></category>
		<category><![CDATA[how to tutorials]]></category>
		<category><![CDATA[install jira on ubuntu 20.04]]></category>
		<category><![CDATA[jira project managmement]]></category>
		<category><![CDATA[jira ubuntu]]></category>
		<category><![CDATA[Ubuntu 20.04 tutorials]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=27355</guid>

					<description><![CDATA[<p>In this tutorial, you&#8217;ll learn that how to install Jira Agile Project Management on Ubuntu 20.04. JIRA is a project management tool that can be used in the Customer &#38; Support services for tracking, generating &#38; to see the status of the tickets. It is commercial product &#38; available as a trial version for limited [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-jira-agile-project-management-on-ubuntu-20-04/">Install Jira Agile Project Management  On Ubuntu 20.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In this tutorial, you&#8217;ll learn that <a href="https://www.osradar.com/?p=27355">how to install Jira Agile Project Management on Ubuntu 20.04</a>. JIRA is a project management tool that can be used in the Customer &amp; Support services for tracking, generating &amp; to see the status of the tickets. It is commercial product &amp; available as a trial version for limited time. The main functions of JIRA are Bugs &amp; defect managing, advance reports, search &amp; filtering, custom workflows, dashboards, advance security &amp; administration. Simply follow the below steps to install JIRA on Ubuntu 20.04.</p>



<h2>Step 1: Update Your System</h2>



<p>First of all update your system to have the latest updates installed.</p>



<pre class="wp-block-verse">sudo apt update &amp;&amp; sudo apt upgrade -y</pre>



<p>Once updated, reboot your system.</p>



<pre class="wp-block-verse">sudo reboot</pre>



<h3>Step 2: Install &amp; Configure MariaDB Database Server</h3>



<p>As JIRA uses MariaDB to store it&#8217;s data, so we&#8217;ve to install &amp; configure it for JIRA. Fire the below command to install the MariaDB Server.</p>



<pre class="wp-block-verse">sudo apt install mariadb-server -y</pre>



<p>After installing the server type mysql to login to MariaDB.</p>



<pre class="wp-block-verse">sudo mysql</pre>



<p>Now, create a new database for JIRA by hitting the below commands.</p>



<pre class="wp-block-verse">CREATE DATABASE osradardb CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
 CREATE USER 'osradaruser'@'localhost' IDENTIFIED BY 'password';
 GRANT ALL ON osradardb.* TO 'osradaruser'@'localhost' WITH GRANT OPTION;
 FLUSH PRIVILEGES;
 EXIT;</pre>



<p>Now, edit the <strong>/etc/mysql/mariadb.conf.d/50-server.cnf</strong> file by typing</p>



<pre class="wp-block-verse">sudo nano /etc/mysql/mariadb.conf.d/50-server.cnf</pre>



<p>And then add the below data under <strong>[mysqld]</strong> section:</p>



<pre class="wp-block-verse">default-storage-engine= INNODB
 character_set_server = utf8mb4
 innodb_default_row_format = DYNAMIC
 innodb_large_prefix = ON
 innodb_file_format = Barracuda
 innodb_log_file_size = 2G
 sql_mode = NO_AUTO_VALUE_ON_ZERO</pre>



<p>Then save &amp; close the file and exit.</p>



<p>Finally restart MariaDB services.</p>



<pre class="wp-block-verse">sudo systemctl restart mariadb.service</pre>



<h3>Step 3: Install JIRA On Ubuntu 20.04</h3>



<p>Fetch the latest version of JIRA with the help of wget command.</p>



<pre class="wp-block-verse">wget https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-8.14.0-x64.bin</pre>



<p>Set the proper permissions for downloaded file by typing.</p>



<pre class="wp-block-verse">sudo chmod a+x atlassian-jira-software-8.14.0-x64.bin</pre>



<p>And then hit the below command to install the JIRA software.</p>



<pre class="wp-block-verse">sudo ./atlassian-jira-software-8.14.0-x64.bin</pre>



<p>You&#8217;ll see the similar output:</p>



<pre class="wp-block-verse">sabi@Ubuntu20:~$ sudo ./atlassian-jira-software-8.14.0-x64.bin
 Unpacking JRE …
 Starting Installer …
 This will install Jira Software 8.14.0 on your computer.
 OK [o, Enter], Cancel [c]
 o
 Click Next to continue, or Cancel to exit Setup.
 </pre>



<p>Presss <strong>&#8220;Enter&#8221;</strong> to continue the installation.</p>



<pre class="wp-block-verse">Choose the appropriate installation or upgrade option.
 Please choose one of the following:
 Express Install (use default settings) [1], Custom Install (recommended for advanced users) [2, Enter], Upgrade an existing Jira installation [3]
 2</pre>



<p>Choose the custom option by entering <strong>2</strong>.</p>



<pre class="wp-block-verse">Select the folder where you would like Jira Software to be installed.
 Where should Jira Software be installed?
 [/opt/atlassian/jira]</pre>



<p>Default location for Jira Software data<br>[/var/atlassian/application-data/jira]</p>



<p>Now, select the path where you want to install JIRA &amp; press Enter.</p>



<pre class="wp-block-verse">Configure which ports Jira Software will use.
 Jira requires two TCP ports that are not being used by any other
 applications on this machine. The HTTP port is where you will access Jira
 through your browser. The Control port is used to startup and shutdown Jira.
 Use default ports (HTTP: 8080, Control: 8005) - Recommended [1, Enter], Set custom value for HTTP and Control ports [2]
 1</pre>



<p>Now, type 1 to use default ports or select 2 to enter custom ports.</p>



<pre class="wp-block-verse">Jira can be run in the background.
 You may choose to run Jira as a service, which means it will start
 automatically whenever the computer restarts.
 Install Jira as Service?
 Yes [y, Enter], No [n]
 y</pre>



<p>Next, press <strong>&#8220;Y&#8221;</strong> &amp; hit <strong>&#8220;Enter&#8221; </strong>to install JIRA as a service.</p>



<pre class="wp-block-verse">Install as service: Yes 
 Install [i, Enter], Exit [e]
 i</pre>



<p>Finally select <strong>i </strong>&amp; press Enter to initialize the installation process.</p>



<p>Extracting files …</p>



<p>Please wait a few moments while Jira Software is configured.</p>



<pre class="wp-block-verse">Please wait a few moments while Jira Software starts up.
 Launching Jira Software …
 Installation of Jira Software 8.14.0 is complete
 Your installation of Jira Software 8.14.0 is now ready and can be accessed
 via your browser.
 Jira Software 8.14.0 can be accessed at http://localhost:8080
 Finishing installation …</pre>



<p>Now, select<strong> &#8220;Y&#8221; </strong>&amp; press <strong>&#8220;Enter&#8221; </strong>to start the JIRA. Upon successfull installation, you&#8217;ll see the following output:</p>



<pre class="wp-block-verse">Installation of Jira Software 8.14.0 is complete
Your installation of Jira Software 8.14.0 is now ready and can be accessed
via your browser.
Jira Software 8.14.0 can be accessed at http://localhost:8080
Finishing installation …</pre>



<h3>Step 4: Configure JIRA On Ubuntu 20.04</h3>



<p>To configure JIRA, you&#8217;ll need to download the MySQL JDBC driver &amp; then copy it to the Jira folder. You can do so by hitting the below command.</p>



<pre class="wp-block-verse">wget https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-8.0.18.zip</pre>



<p>Now, unzip the above downloaded file by typing</p>



<pre class="wp-block-verse">sudo unzip mysql-connector-java-8.0.18.zip</pre>



<p>And then copy the MySQL connector by typing</p>



<p>sudo cp mysql-connector-java-8.0.18/mysql-connector-java-8.0.18.jar /opt/atlassian/jira/lib</p>



<p>Now, stop &amp; start the Jira services by hitting</p>



<pre class="wp-block-verse">sudo /etc/init.d/jira stop<br>sudo /etc/init.d/jira start</pre>



<h3>Step 5: Configure Proxy For JIRA On Ubuntu 20.04</h3>



<p>Edit the <strong>/opt/atlassian/jira/conf/server.xml</strong> file to configure proxy for JIRA by typing</p>



<pre class="wp-block-verse">sudo nano /opt/atlassian/jira/conf/server.xml</pre>



<p>And look for the given lines.</p>



<pre class="wp-block-verse">&lt;Connector port="8080" relaxedPathChars="[]|" relaxedQueryChars="[]|{}^`"&lt;&gt;"
maxThreads="150" minSpareThreads="25" connectionTimeout="20000" enableLookups="false"
                    maxHttpHeaderSize="8192" protocol="HTTP/1.1" useBodyEncodingForURI="true" redirectPacceptCount="100" disableUploadTimeout="true" bindOnInit="false"/&gt;</pre>



<p>Then replace the above lines with the below lines.</p>



<pre class="wp-block-verse">&lt;Connector port="8080" relaxedPathChars="[]|" relaxedQueryChars="[]|{}^`"&lt;&gt;"
maxThreads="150" minSpareThreads="25" connectionTimeout="20000" enableLookups="false"
maxHttpHeaderSize="8192" protocol="HTTP/1.1" useBodyEncodingForURI="true" redirectPort="8443"
acceptCount="100" disableUploadTimeout="true" bindOnInit="false" scheme="http"
proxyName="jira.example.com" proxyPort="80"/&gt;</pre>



<p>And hit below commands to apply the changes.</p>



<pre class="wp-block-verse">sudo /etc/init.d/jira stop<br>sudo /etc/init.d/jira start</pre>



<h3>Step 6: Configure Nginx As Reverse Proxy for JIRA</h3>



<p>Now, configure the Nginx as a reverse proxy for JIRA. First install nginx by</p>



<pre class="wp-block-verse">sudo apt install nginx -y</pre>



<p>And then edit the config file to add new virtualhost.</p>



<p>sudo nano /etc/nginx/sites-available/jira.conf</p>



<p>Paste the below content into it.</p>



<pre class="wp-block-verse">server {
     listen 8080;
     server_name localhost;
     location / {
         proxy_set_header X-Forwarded-Host $host;
         proxy_set_header X-Forwarded-Server $host;
         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
         proxy_pass http://localhost:8080;
         client_max_body_size 10M;
     }
 }</pre>



<p>Save &amp; exit the file and then link it.</p>



<pre class="wp-block-verse">sudo ln -s /etc/nginx/sites-available/jira.conf /etc/nginx/sites-enabled</pre>



<p>Verify the nginx syntax.</p>



<pre class="wp-block-verse">sudo nginx -t</pre>



<p>If everything ok you&#8217;ll see the success message.</p>



<h3>Step 7: Access JIRA On Ubuntu 20.04</h3>



<p>Go to <strong>jira.example.com </strong>or localhost:8080 to access JIRA on web interface. I&#8217;ll show you here on my localhost.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="455" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/01/2021-01-09_14h28_34-1024x455.png" alt="" class="wp-image-27570" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h28_34-1024x455.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h28_34-300x133.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h28_34-768x341.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h28_34-1536x683.png 1536w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h28_34-696x309.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h28_34-1068x475.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h28_34.png 1613w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Choose the option <strong>&#8220;i&#8217;will set it up myself&#8221; </strong>&amp; press <strong>&#8220;Next&#8221;</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="564" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/01/2021-01-09_14h32_05-1024x564.png" alt="" class="wp-image-27571" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h32_05-1024x564.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h32_05-300x165.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h32_05-768x423.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h32_05-1536x846.png 1536w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h32_05-696x383.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h32_05-1068x588.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_14h32_05.png 1593w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Click <strong>&#8220;My own Database&#8221;</strong> &amp; then fill up the details &amp; press <strong>&#8220;Next</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="444" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/01/2021-01-09_18h40_17-1024x444.png" alt="" class="wp-image-27573" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h40_17-1024x444.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h40_17-300x130.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h40_17-768x333.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h40_17-1536x666.png 1536w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h40_17-696x302.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h40_17-1068x463.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h40_17.png 1661w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Here fill up your appliction data &amp; press <strong>&#8220;Next&#8221;</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="423" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/01/2021-01-09_18h50_29-1024x423.png" alt="" class="wp-image-27575" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h50_29-1024x423.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h50_29-300x124.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h50_29-768x317.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h50_29-1536x634.png 1536w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h50_29-696x287.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h50_29-1068x441.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_18h50_29.png 1606w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Give trial key and proceed.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="993" height="646" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/01/2021-01-09_19h26_28.png" alt="" class="wp-image-27576" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_19h26_28.png 993w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_19h26_28-300x195.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_19h26_28-768x500.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/2021-01-09_19h26_28-696x453.png 696w" sizes="(max-width: 993px) 100vw, 993px" /></figure>



<p>Enter admin account credentials &amp; press<strong> &#8220;Next</strong>&#8220;.</p>



<p>You&#8217;ll see the JIRA dashboard upon success.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="529" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2021/01/image-32-1024x529.png" alt="" class="wp-image-27577" srcset="https://www.osradar.com/wp-content/uploads/2021/01/image-32-1024x529.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/image-32-300x155.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/image-32-768x397.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/image-32-696x360.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/image-32-1068x552.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/image-32.png 1142w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>So, this is how you can install JIRA Project Management System On Ubuntu 20.04.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-jira-agile-project-management-on-ubuntu-20-04/">Install Jira Agile Project Management  On Ubuntu 20.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-jira-agile-project-management-on-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
