<?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>how to configure cacti on ubuntu 20 Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/how-to-configure-cacti-on-ubuntu-20/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Mon, 26 Jul 2021 12:11:56 +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 Install and  Configure Cacti on Ubuntu 20.04</title>
		<link>https://www.osradar.com/how-to-install-and-configure-cacti-on-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/how-to-install-and-configure-cacti-on-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[sabi]]></dc:creator>
		<pubDate>Thu, 11 Jun 2020 10:12:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cacti]]></category>
		<category><![CDATA[cacti installation]]></category>
		<category><![CDATA[cacti installation on Ubuntu 20]]></category>
		<category><![CDATA[cacti network monitoring tool]]></category>
		<category><![CDATA[how to configure cacti on ubuntu 20]]></category>
		<category><![CDATA[how to install cacti on ubuntu]]></category>
		<category><![CDATA[how to tutorials]]></category>
		<category><![CDATA[ubuntu 20.04]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=19888</guid>

					<description><![CDATA[<p>Today we are going to learn that how to install Cacti on Ubuntu 20.04. Cacti is a totally open-source network monitoring and graphing tool designed as a front-end software for the industry-trendy information logging tool RRDtool. Cacti harness the Power of RRDtool’s data storage and graphing functionality. Some suitable features of Cacti consist of: Rapid [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-and-configure-cacti-on-ubuntu-20-04/">How To Install and  Configure Cacti 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>Today we are going to learn that<a href="https://www.osradar.com/?p=19888" target="_blank" rel="noreferrer noopener"> how to install Cacti on Ubuntu 20.04</a>. Cacti is a totally open-source network monitoring and graphing tool designed as a front-end software for the industry-trendy information logging tool RRDtool. Cacti harness the Power of RRDtool’s data storage and graphing functionality.</p>



<p>Some suitable features of Cacti consist of:</p>



<ul><li>Rapid polling of metrics</li><li>Assist for multiple information acquisition strategies</li><li>Support for advanced graph template</li><li>Consumer control functionality with ACL</li></ul>



<p>Cacti offer an intuitive and smooth to use internet interface which may be used for small LAN installations up to complicated networks with lots of servers and networking devices. So, now we are going to start the installation of Cacti on Ubuntu 20.04.</p>



<h3><strong>Step 1: Update &amp; Upgrade Your System</strong></h3>



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



<h3><strong>Step 2: Install PHP &amp; PHP Extensions</strong></h3>



<p>Run the below command to install the required PHP extensions.</p>



<pre class="wp-block-verse">sudo apt install -y php-mysql libapache2-mod-php php-xml php-ldap php-mbstring php-gd php-gmp</pre>



<p>Verify the PHP version by typing.</p>



<pre class="wp-block-verse">php -v</pre>



<p>Output:</p>



<pre class="wp-block-verse">sabir@Ubuntu20:~$ php -v
PHP 7.4.3 (cli) (built: May 26 2020 12:24:22) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
with Zend OPcache v7.4.3, Copyright (c), by Zend Technologies</pre>



<p>Then set your timezone, memory limit and max_execution time by editing <strong>/etc/php/7.4/apache2/php.ini</strong></p>



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



<pre class="wp-block-verse">date.timezone = Asia/Karachi
memory_limit = 512M
max_execution_time = 60</pre>



<p>Do the same changes for <strong>/etc/php/7.4/cli/php.ini</strong> file.</p>



<h3><strong>Step 3:Install Apache Server</strong></h3>



<p>Apache is one of the best web server that suits with the Cacti. So, install it by running.</p>



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



<p>As the installation of Apache done, apply a security configuration to the Apache by permitting <strong>Prod ServerTokens</strong> only. Open the security.conf file with your favorite editor.</p>



<pre class="wp-block-verse">sudo nano /etc/apache2/conf-enabled/security.conf</pre>



<p>Then change the following line.</p>



<pre class="wp-block-verse">ServerTokens Prod</pre>



<p>Finally allow firewall access to http, https.</p>



<pre class="wp-block-verse">sudo ufw allow http
sudo ufw allow https</pre>



<p>And restart the Apache server.</p>



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



<h3><strong>Step 4:Install MariaDB Database</strong></h3>



<p>Make sure that you’ve already installed MariaDB on your Ubuntu system. If you don’t know how to install it, then follow the below link to go to the MariaDB installation page first &amp; then continue from here to Install Cacti on Ubunut 20.04.</p>



<p><a href="https://www.osradar.com/how-to-install-mariadb-on-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">How To Install MariaDB on Ubuntu 20.04</a></p>



<p>You can also install it from Ubuntu repository by hitting.</p>



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



<p>Once the installation finished, run the below command to secure the installation.</p>



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



<p>Then change the MariaDB settings to work properly with the Cacti. Edit the config file by hitting below command.</p>



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



<p>And make the below changes under<strong> [mysqld]</strong> section.</p>



<pre class="wp-block-verse">collation-server = utf8mb4_unicode_ci
max_heap_table_size = 128M
tmp_table_size = 64M
join_buffer_size = 64M
innodb_file_format = Barracuda
innodb_large_prefix = 1
innodb_buffer_pool_size = 512M
innodb_flush_log_at_timeout = 3
innodb_read_io_threads = 32
innodb_write_io_threads = 16
innodb_io_capacity = 5000
innodb_io_capacity_max = 10000</pre>



<p>Then restart the MariaDB services to take effects of the configuration changes.</p>



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



<p>As the services restarted , create a new Database for Cacti:</p>



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



<pre class="wp-block-verse">create database cacti;
grant all privileges on cacti.* to osradar@localhost identified by 'yourpassword';
flush privileges;
quit;</pre>



<p>Now, run the below command to give permissions to new user for accessing the mysql.time_zone_name table.</p>



<pre class="wp-block-verse">sudo mysql -u root -p mysql &lt; /usr/share/mysql/mysql_test_data_timezone.sql</pre>



<p>Now, login to MySQL and give permissions to &#8220;osradar&#8221; user.</p>



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



<pre class="wp-block-verse">GRANT SELECT ON mysql.time_zone_name TO osradar@localhost;<br>flush privileges;<br>exit</pre>



<h3><strong>Step 5: Install SNMP &amp; rrdtool on Ubuntu 20.04</strong></h3>



<p>Now, run the below command to get install the SNMP and rrdtool for the monitoring of devices.</p>



<pre class="wp-block-verse">sudo apt install -y snmp php-snmp rrdtool librrds-perl</pre>



<h3><strong>Step 6: Downloading &amp; Configuring Cacti</strong></h3>



<p>Fetch the latest version of Cacti by running the below command or you can visit the <a href="https://www.cacti.net/download_cacti.php" target="_blank" rel="noreferrer noopener">official page</a> to download the latest version of cacti.</p>



<pre class="wp-block-verse">wget https://www.cacti.net/downloads/cacti-latest.tar.gz</pre>



<p>After the download finished extract the downloaded package.</p>



<pre class="wp-block-verse">tar -zxvf cacti-latest.tar.gz</pre>



<p>Then move the resultant to the <strong>/opt </strong>directory.</p>



<pre class="wp-block-verse">sudo mv cacti-1* /opt/cacti</pre>



<p>Now, hit the given command to import the default DB data to new cacti DB.</p>



<pre class="wp-block-verse">sudo mysql -u root -p cacti &lt; /opt/cacti/cacti.sql</pre>



<p>And then specify the DB type, DB name, host name, user &amp; passwd info by editing the below file.</p>



<pre class="wp-block-verse">sudo nano /opt/cacti/include/config.php</pre>



<p>Update to the similar changes.</p>



<pre class="wp-block-verse">/* make sure these values reflect your actual database/host/user/password */
$database_type = "mysql";
$database_default = "cacti";
$database_hostname = "localhost";
$database_username = "osradar";
$database_password = "'yourpassword'";
$database_port = "3306";
$database_ssl = false;</pre>



<p>Now, create a crontab file to schedule the polling job.</p>



<pre class="wp-block-verse">sudo nano /etc/cron.d/cacti</pre>



<p>Then add the below line.</p>



<pre class="wp-block-verse">*/5 * * * * www-data php /opt/cacti/poller.php &gt; /dev/null 2&gt;&amp;1</pre>



<p>After it create a new site for the Cacti.</p>



<pre class="wp-block-verse">sudo nano /etc/apache2/sites-available/cacti.conf</pre>



<p>And make the following changes</p>



<pre class="wp-block-preformatted">Alias /cacti /opt/cacti
&lt;Directory /opt/cacti&gt;
    Options +FollowSymLinks
    AllowOverride None
    &lt;IfVersion &gt;= 2.3&gt;
       Require all granted
    &lt;/IfVersion&gt;
    &lt;IfVersion &lt; 2.3&gt;
       Order Allow,Deny
       Allow from all
    &lt;/IfVersion&gt;
AddType application/x-httpd-php .php

    &lt;IfModule mod_php.c&gt;
        php_flag magic_quotes_gpc Off
        php_flag short_open_tag On
        php_flag register_globals Off
        php_flag register_argc_argv On
        php_flag track_vars On
        # this setting is necessary for some locales
        php_value mbstring.func_overload 0
        php_value include_path .
     &lt;/IfVersion&gt;
DirectoryIndex index.php
&lt;/Directory&gt;</pre>



<p>Then fire the below command to enable the created site.</p>



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



<p>Finally restart the apache server to take effects.</p>



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



<p>Now, create a log file and also permit the Apache user (www-data) to write info on to cacti directory. You can do so by hitting the below command.</p>



<pre class="wp-block-verse">sudo touch /opt/cacti/log/cacti.log<br>sudo chown -R www-data:www-data /opt/cacti/</pre>



<h3><strong>Step 7 Finalizing Cacti Installation</strong></h3>



<p>As we’ve done all the necessary steps to Install &amp; Configure Cacti on our Ubuntu system. So, now we are going to test our Installation. Go to your browser and type<strong> locahost/cacti</strong> or <strong>127.0.0.1/cacti</strong> to finalize our Installation.</p>



<p>Provide the below details to set up Cacti installation.</p>



<pre class="wp-block-verse"><strong>Username = admin
Password = admin</strong></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="473" src="//osradar.com/wp-content/uploads/2020/06/1-3-1024x473.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20854" srcset="https://www.osradar.com/wp-content/uploads/2020/06/1-3-1024x473.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/1-3-300x138.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/1-3-768x355.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/1-3-696x321.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/1-3-1068x493.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/1-3.png 1291w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>For security reasons, change the password and provide new strong password.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="434" src="//osradar.com/wp-content/uploads/2020/06/2-3-1024x434.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20855" srcset="https://www.osradar.com/wp-content/uploads/2020/06/2-3-1024x434.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/2-3-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/2-3-768x325.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/2-3-696x295.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/2-3-1068x453.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/2-3.png 1293w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Accept the License Agreement and hit <strong>Begin</strong> button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="435" src="//osradar.com/wp-content/uploads/2020/06/3-3-1024x435.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20856" srcset="https://www.osradar.com/wp-content/uploads/2020/06/3-3-1024x435.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/3-3-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/3-3-768x326.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/3-3-696x296.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/3-3-1068x454.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/3-3.png 1288w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Make sure that all requirements are okay.</p>



<p>And then hit “<strong>Next</strong>“.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="244" src="//osradar.com/wp-content/uploads/2020/06/4-4-1024x244.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20860" srcset="https://www.osradar.com/wp-content/uploads/2020/06/4-4-1024x244.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/4-4-300x71.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/4-4-768x183.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/4-4-696x166.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/4-4-1068x254.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/4-4.png 1293w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Select the type of Server, as we are going to Install our first Server so I’m selecting the Primary Server.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="428" src="//osradar.com/wp-content/uploads/2020/06/5-4-1024x428.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20861" srcset="https://www.osradar.com/wp-content/uploads/2020/06/5-4-1024x428.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/5-4-300x126.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/5-4-768x321.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/5-4-696x291.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/5-4-1068x447.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/5-4.png 1293w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Then press&nbsp;<strong>“Next”</strong>&nbsp;button.</p>



<p>And check the Directory Permissions.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="442" src="//osradar.com/wp-content/uploads/2020/06/6-2-1024x442.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20862" srcset="https://www.osradar.com/wp-content/uploads/2020/06/6-2-1024x442.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/6-2-300x129.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/6-2-768x331.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/6-2-696x300.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/6-2-1068x461.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/6-2.png 1282w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>After it press “<strong>Next</strong>“.  And make sure all the options are okay(green tick).</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="433" src="//osradar.com/wp-content/uploads/2020/06/7-2-1024x433.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20863" srcset="https://www.osradar.com/wp-content/uploads/2020/06/7-2-1024x433.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/7-2-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/7-2-768x325.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/7-2-696x294.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/7-2-1068x451.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/7-2.png 1292w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Now, agree to the statement after reading it carefully. And then press &#8220;<strong>Next</strong>&#8220;</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="431" src="//osradar.com/wp-content/uploads/2020/06/8-2-1024x431.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20864" srcset="https://www.osradar.com/wp-content/uploads/2020/06/8-2-1024x431.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/8-2-300x126.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/8-2-768x324.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/8-2-696x293.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/8-2-1068x450.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/8-2.png 1289w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>On the next page you can see the default profile page as we&#8217;ve already setup the cron job for every 5 minutes. Then click <strong>&#8220;Next&#8221;.</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="430" src="//osradar.com/wp-content/uploads/2020/06/9-2-1024x430.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20865" srcset="https://www.osradar.com/wp-content/uploads/2020/06/9-2-1024x430.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/9-2-300x126.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/9-2-768x323.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/9-2-696x292.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/9-2-1068x449.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/9-2.png 1290w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Then select the profile template and press <strong>&#8220;Next&#8221;</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="434" src="//osradar.com/wp-content/uploads/2020/06/10-1-1024x434.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20866" srcset="https://www.osradar.com/wp-content/uploads/2020/06/10-1-1024x434.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/10-1-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/10-1-768x325.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/10-1-696x295.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/10-1-1068x452.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/10-1.png 1292w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Hit <strong>&#8220;Next&#8221;</strong> button to move on to the next step.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="693" height="462" src="//osradar.com/wp-content/uploads/2020/06/11-1.png" alt="" class="wp-image-20867" srcset="https://www.osradar.com/wp-content/uploads/2020/06/11-1.png 693w, https://www.osradar.com/wp-content/uploads/2020/06/11-1-300x200.png 300w" sizes="(max-width: 693px) 100vw, 693px" /></figure>



<p>Finally finish the installation by checking the <strong>&#8220;Confirm Installation&#8221;</strong> box and click on <strong>&#8220;Install&#8221;</strong> button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="436" src="//osradar.com/wp-content/uploads/2020/06/12-1-1024x436.png" alt="" class="wp-image-20868" srcset="https://www.osradar.com/wp-content/uploads/2020/06/12-1-1024x436.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/12-1-300x128.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/12-1-768x327.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/12-1-696x296.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/12-1-1068x455.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/12-1.png 1290w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Then click on &#8220;<strong>Get Started</strong>&#8221; button when installation finished.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="434" src="//osradar.com/wp-content/uploads/2020/06/13-1024x434.png" alt="" class="wp-image-20869" srcset="https://www.osradar.com/wp-content/uploads/2020/06/13-1024x434.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/13-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/13-768x325.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/13-696x295.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/13-1068x452.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/13.png 1289w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Now, you will be directed to the dashboard where you can perform different tasks. Navigate to the graphics section to see the graphic details of local or remote machines.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="436" src="//osradar.com/wp-content/uploads/2020/06/14-1024x436.png" alt="How To Install and  Configure Cacti on Ubuntu 20.04" class="wp-image-20870" srcset="https://www.osradar.com/wp-content/uploads/2020/06/14-1024x436.png 1024w, https://www.osradar.com/wp-content/uploads/2020/06/14-300x128.png 300w, https://www.osradar.com/wp-content/uploads/2020/06/14-768x327.png 768w, https://www.osradar.com/wp-content/uploads/2020/06/14-696x297.png 696w, https://www.osradar.com/wp-content/uploads/2020/06/14-1068x455.png 1068w, https://www.osradar.com/wp-content/uploads/2020/06/14.png 1291w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Now, you can see the graphs, resources and values and other network resources via cacti on your system. So, this is how you can install and configure Cacti on Ubuntu 20.04.If you&#8217;ve any question regarding this tutorial, feel free to ask in comments.</p>



<p>So, share this post and join our <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener">Telegram Channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-and-configure-cacti-on-ubuntu-20-04/">How To Install and  Configure Cacti 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-install-and-configure-cacti-on-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
