<?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>monitoring tool icinga Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/monitoring-tool-icinga/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sun, 31 May 2020 06:35:55 +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>How To Setup Icinga Web Interface On Ubuntu 20.04</title>
		<link>https://www.osradar.com/how-to-setup-icinga-web-interface-on-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/how-to-setup-icinga-web-interface-on-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[sabi]]></dc:creator>
		<pubDate>Sun, 31 May 2020 06:35:52 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how to icinga web]]></category>
		<category><![CDATA[how to install icinga monitoring tool on ubuntu 20.04]]></category>
		<category><![CDATA[how to setup icinga web 2]]></category>
		<category><![CDATA[How To Setup Icinga Web Interface On Ubuntu 20.04]]></category>
		<category><![CDATA[icigna web 2 monitoring linux]]></category>
		<category><![CDATA[icinga]]></category>
		<category><![CDATA[icinga web 2]]></category>
		<category><![CDATA[icingaweb2 installation on ubuntu 20.04]]></category>
		<category><![CDATA[monitoring tool icinga]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=20036</guid>

					<description><![CDATA[<p>In this tutorial, you&#8217;ll learn that how to setup Icinga 2 web interface. In our previous guide we already cover the installation of Icinga 2 on Ubuntu 20.04. If you missed the installation guide visit the below link. How To Install Icinga 2 on Ubuntu 20.04 Icinga 2 Web provides the interface for Web and [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-setup-icinga-web-interface-on-ubuntu-20-04/">How To Setup Icinga Web Interface 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 how to setup Icinga 2 web interface. In our previous guide we already cover the installation of Icinga 2 on Ubuntu 20.04. If you missed the installation guide visit the below link.</p>



<p><a href="https://www.osradar.com/?p=20026">How To Install Icinga 2 on Ubuntu 20.04</a></p>



<p>Icinga 2 Web provides the interface for Web and centralized interface for the Network monitoring. For easy and optimal settings follow the complete guide.</p>



<h3><strong>Step 1: Update Your System</strong></h3>



<p>As usual we do, first of all update your system to the latest packages by hitting the below command.</p>



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



<h3><strong>Step 2: Adding Icinga 2 Repository on Ubuntu 20.04</strong></h3>



<p>To add the icinga 2 repository on Ubuntu 20.04, make sure to be the root user or switch it by</p>



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



<p>Also make sure to get the https and curl packages if they are not already installed.</p>



<pre class="wp-block-verse">apt-get install -y apt-transport-https curl</pre>



<p>Then run the given command to add the Icinga public signing key</p>



<pre class="wp-block-verse">curl https://packages.icinga.com/icinga.key | apt-key add -</pre>



<p>After it fire the below command to add the Icinga repository on Ubuntu 20.04.</p>



<pre class="wp-block-verse">echo "deb http://packages.icinga.com/ubuntu icinga-$(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/icinga2.list<br>echo "deb-src http://packages.icinga.com/ubuntu icinga-$(lsb_release -sc) main" | sudo tee -a /etc/apt/sources.list.d/icinga2.list</pre>



<p>Then update the repository cache by running the command.</p>



<pre class="wp-block-verse">apt-get update</pre>



<h3><strong>Step 3: Install PHP Packages on Ubuntu 20.04</strong></h3>



<p>Fire the given command to install the PHP packages required for Icinga 2 web on Ubuntu 20.04.</p>



<pre class="wp-block-verse">apt-get install -y php-gd php-json php-dba php-intl php-ldap php-pdo-mysql php-pgsql php-imagick php-dom</pre>



<p><strong>Note:</strong>During installation I got error due to the latest php version(7.4). So, if you face the same issue switch to the previous version of php like 7.0 as Icinga doesn&#8217;t support latest version. Install the PHP7.0 by running below command with the remaining extensions.</p>



<pre class="wp-block-verse">add-apt-repository ppa:ondrej/php
apt update</pre>



<pre class="wp-block-verse">apt-get install -y php7.0
add-apt-repository ppa:ondrej/php
apt-update
apt-get install -y php7.0-gd php7.0-json php7.0-dba php7.0-intl php7.0-ldap php7.0-pdo-mysql php7.0-pgsql php7.0-imagick php7.0-dom</pre>



<p>Then restart the apache server.</p>



<pre class="wp-block-verse">systemctl restart apache2</pre>



<h3><strong>Step 4: Installing Icinga Web 2</strong></h3>



<p>Now, as we&#8217;ve already added the repository for icinga web 2 run the below command to install the icinga web 2.</p>



<pre class="wp-block-verse">apt-get install -y icingaweb2</pre>



<p>As the Icinga Web 2 also have the CLI installed in it in order to perform different operations from CLI as well as from web. So, both have access to logs &amp; configs. To do this add the web server user (www-data) to the system group (icingaweb2).</p>



<pre class="wp-block-verse">addgroup --system icingaweb2<br>usermod -a -G icingaweb2 www-data</pre>



<p>And then set the timezone according to your time in php.ini file.</p>



<pre class="wp-block-verse">nano /etc/php/7.*/apache2/php.ini</pre>



<pre class="wp-block-verse"><strong>date.timezone= Asia/Karachi</strong></pre>



<p>Then restart the apache server.</p>



<pre class="wp-block-verse">systemctl restart apache2</pre>



<h3><strong>Step 5: Setup Icinga Web 2</strong></h3>



<p>Now, visit the below link to start the wizard for setting up Icinga Web 2.</p>



<pre class="wp-block-verse">http://your.ip.addr.ess/icingaweb2/setup
or
localhost/icingaweb2/setup</pre>



<p>And run the following command in your terminal to generate a toke for security.</p>



<pre class="wp-block-verse">icingacli setup token create</pre>



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



<pre class="wp-block-verse">icingacli setup token create
The newly generated setup token is: e00b72902b690722</pre>



<p>On Browser wizard, copy and paste the above generated token &amp; hit <strong>Next</strong>.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="1024" height="437" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/1-22-1024x437.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20609" srcset="https://www.osradar.com/wp-content/uploads/2020/05/1-22-1024x437.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/1-22-300x128.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/1-22-768x328.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/1-22-696x297.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/1-22-1068x456.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/1-22.png 1291w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></div>



<p>On the next screen, select the installed modules(during icinga installation) to enable them &amp; hit the <strong>Next</strong> button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="434" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/2-26-1024x434.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20610" srcset="https://www.osradar.com/wp-content/uploads/2020/05/2-26-1024x434.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/2-26-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/2-26-768x326.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/2-26-696x295.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/2-26-1068x453.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/2-26.png 1292w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Below pages output the information of the system, timezone &amp; the PHP extensions.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="435" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/3-22-1024x435.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20611" srcset="https://www.osradar.com/wp-content/uploads/2020/05/3-22-1024x435.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/3-22-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/3-22-768x326.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/3-22-696x296.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/3-22-1068x454.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/3-22.png 1292w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="435" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/4-18-1024x435.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20612" srcset="https://www.osradar.com/wp-content/uploads/2020/05/4-18-1024x435.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/4-18-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/4-18-768x326.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/4-18-696x296.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/4-18-1068x453.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/4-18.png 1286w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="428" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/5-13-1024x428.png" alt="" class="wp-image-20613" srcset="https://www.osradar.com/wp-content/uploads/2020/05/5-13-1024x428.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/5-13-300x125.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/5-13-768x321.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/5-13-696x291.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/5-13-1068x446.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/5-13.png 1285w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Note: If anything missing, you&#8217;ll need to install it before proceeding further. If everything goes fine then click on <strong>Next</strong> button.</p>



<p>In next step choose the authentication type. Make sure that Icinga Web 2 supports the AD, LDAP &amp; Local for authentication purposes. Here I&#8217;m going to use local. For this select Database.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="310" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/6-11-1024x310.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20614" srcset="https://www.osradar.com/wp-content/uploads/2020/05/6-11-1024x310.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/6-11-300x91.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/6-11-768x232.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/6-11-696x210.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/6-11-1068x323.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/6-11.png 1293w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>As Icinga Web 2 stores info in database, so create one for it. Type in the terminal.</p>



<pre class="wp-block-verse">mysql -u root -p</pre>



<pre class="wp-block-verse">> CREATE DATABASE icingawebdb;
> grant all privileges on icingawebdb.* to icingaweb@localhost identified by 'icinga123';
> quit</pre>



<p>And put these database details in the Wizard opened in browser &amp; click <strong>Next</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="435" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/7-10-1024x435.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20615" srcset="https://www.osradar.com/wp-content/uploads/2020/05/7-10-1024x435.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/7-10-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/7-10-768x326.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/7-10-696x296.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/7-10-1068x454.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/7-10.png 1292w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Now, type authentication backend name &amp; click <strong>Next</strong> button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="431" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/8-6-1024x431.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20616" srcset="https://www.osradar.com/wp-content/uploads/2020/05/8-6-1024x431.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/8-6-300x126.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/8-6-768x324.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/8-6-696x293.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/8-6-1068x450.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/8-6.png 1291w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>In next step create an admin account. Make sure to keep the credentials in safe place.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="437" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/9-6-1024x437.png" alt="" class="wp-image-20617" srcset="https://www.osradar.com/wp-content/uploads/2020/05/9-6-1024x437.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/9-6-300x128.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/9-6-768x328.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/9-6-696x297.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/9-6-1068x456.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/9-6.png 1288w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Fill the details for storing logs &amp; configs. Then click <strong>Next</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="432" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/10-4-1024x432.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20618" srcset="https://www.osradar.com/wp-content/uploads/2020/05/10-4-1024x432.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/10-4-300x126.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/10-4-768x324.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/10-4-696x293.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/10-4-1068x450.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/10-4.png 1293w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Finally review your settings &amp; click <strong>Next</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="427" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/11-3-1024x427.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20619" srcset="https://www.osradar.com/wp-content/uploads/2020/05/11-3-1024x427.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/11-3-300x125.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/11-3-768x320.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/11-3-696x290.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/11-3-1068x445.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/11-3.png 1284w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>And click <strong>Next</strong> on the next screen to configure the monitoring of Icinga web 2.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="433" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/12-2-1024x433.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20620" srcset="https://www.osradar.com/wp-content/uploads/2020/05/12-2-1024x433.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/12-2-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/12-2-768x325.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/12-2-696x294.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/12-2-1068x452.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/12-2.png 1289w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Choose monitoring backend for retrieving the info. I&#8217;m going to use IDO.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="427" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/13-2-1024x427.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20621" srcset="https://www.osradar.com/wp-content/uploads/2020/05/13-2-1024x427.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/13-2-300x125.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/13-2-768x321.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/13-2-696x290.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/13-2-1068x446.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/13-2.png 1289w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>As we&#8217;ve already created the DB for IDO in Icinga 2 installation, so use that one. Click here to go the installation post to see the Database details. Enter the IDO database details &amp; click on <strong>Next</strong> button .</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="431" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/14-1024x431.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20622" srcset="https://www.osradar.com/wp-content/uploads/2020/05/14-1024x431.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/14-300x126.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/14-768x323.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/14-696x293.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/14-1068x449.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/14.png 1286w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h3><strong>Step 6: Setup Command Transport</strong></h3>



<p>Icinga Web 2 support the following command transports.</p>



<ul><li>Local Command File</li><li>Icinga 2 API (Recommended)</li><li>Remote Command Line</li></ul>



<p>It&#8217;s up to you to use multiple command transport or single one. For demo here I&#8217;m going to use single local command transport.</p>



<ul><li>Local Command File</li><li>Icinga 2 API</li></ul>



<p>Fire the given command to setup Icinga 2 API command transport.</p>



<pre class="wp-block-verse">icinga2 api setup</pre>



<p>Output:</p>



<p>Here&#8217;s output sample.</p>



<pre class="wp-block-verse">icinga2 api setup

information/cli: Generating new CA.
warning/cli: CA files '/var/lib/icinga2/ca//ca.crt' and '/var/lib/icinga2/ca//ca.key' already exist.
warning/cli: Found CA, skipping and using the existing one.
information/cli: Private key file '/var/lib/icinga2/certs//Ubuntu20.localdomain.key' already exists, not generating new certificate.
information/cli: Adding new ApiUser 'root' in '/etc/icinga2/conf.d/api-users.conf'.</pre>



<p>You can find the API user detail in<strong> /etc/icinga2/conf.d/api-users.conf </strong>file.</p>



<pre class="wp-block-verse">cat /etc/icinga2/conf.d/api-users.conf</pre>



<p>Then restart the Icinga 2 services.</p>



<p>Now, provide the above credentials on the web page &amp; click<strong> Next</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="436" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/15-1024x436.png" alt="" class="wp-image-20623" srcset="https://www.osradar.com/wp-content/uploads/2020/05/15-1024x436.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/15-300x128.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/15-768x327.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/15-696x297.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/15-1068x455.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/15.png 1284w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Then enter the variable info to protect yourself from bad ones. Then click <strong>Next</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="385" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/16-1024x385.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20624" srcset="https://www.osradar.com/wp-content/uploads/2020/05/16-1024x385.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/16-300x113.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/16-768x288.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/16-696x261.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/16-1068x401.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/16.png 1294w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Finally review your monitoring configuration.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="432" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/17-1024x432.png" alt="" class="wp-image-20625" srcset="https://www.osradar.com/wp-content/uploads/2020/05/17-1024x432.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/17-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/17-768x324.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/17-696x294.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/17-1068x451.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/17.png 1293w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Below given page shows the successful setup of Icinga Web 2.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="433" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/18-1024x433.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20626" srcset="https://www.osradar.com/wp-content/uploads/2020/05/18-1024x433.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/18-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/18-768x325.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/18-696x294.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/18-1068x451.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/18.png 1285w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Hit the Login to Icinga Web 2 button.</p>



<h3><strong>Step 7: Accessing Icinga Web 2</strong></h3>



<p>Now, provide the admin account details created earlier to login.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="435" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/19-1024x435.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20628" srcset="https://www.osradar.com/wp-content/uploads/2020/05/19-1024x435.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/19-300x128.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/19-768x326.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/19-696x296.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/19-1068x454.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/19.png 1294w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>You&#8217;ll see the Icinga Web 2 dashboard here.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="438" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/20-1024x438.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20629" srcset="https://www.osradar.com/wp-content/uploads/2020/05/20-1024x438.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/20-300x128.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/20-768x328.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/20-696x298.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/20-1068x457.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/20.png 1282w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Now, navigate to <strong>Overview&gt;&gt;Hosts</strong> to look all the connected hosts.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="430" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/05/21-1024x430.png" alt="How To Setup Icinga Web Interface On Ubuntu 20.04" class="wp-image-20630" srcset="https://www.osradar.com/wp-content/uploads/2020/05/21-1024x430.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/21-300x126.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/21-768x323.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/21-696x292.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/21-1068x449.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/21.png 1295w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>So, this is how you can setup Icinga Web 2 on Ubuntu 20.04. In our next tutorial, we&#8217;ll cover the monitoring of remote hosts.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-setup-icinga-web-interface-on-ubuntu-20-04/">How To Setup Icinga Web Interface 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/how-to-setup-icinga-web-interface-on-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
