<?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>cacti Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/cacti/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>
		<item>
		<title>How to Install Cacti on Centos / RHEL 8</title>
		<link>https://www.osradar.com/how-to-install-cacti-on-centos-rhel-8/</link>
					<comments>https://www.osradar.com/how-to-install-cacti-on-centos-rhel-8/#respond</comments>
		
		<dc:creator><![CDATA[sabi]]></dc:creator>
		<pubDate>Wed, 23 Oct 2019 23:56:48 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[cacti]]></category>
		<category><![CDATA[Centos 8]]></category>
		<category><![CDATA[GCC]]></category>
		<category><![CDATA[Install Cacti on Centos 8]]></category>
		<category><![CDATA[install Cacti on RHEL 8]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=14976</guid>

					<description><![CDATA[<p>What is Cacti?&#160; Cacti is an open source monitoring tool which covers network as well as graphing.&#160; It was designed to provide an easy way to monitor your system on industry-standard data logging tool -RRDtoll.Cacti is an important tool to harnesses the power of RRDtool&#8217;s storage and functionality of graphing.&#160;Cacti is user-friendly and easy to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-cacti-on-centos-rhel-8/">How to Install Cacti on Centos / RHEL 8</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h3><strong> What is Cacti?&nbsp;</strong></h3>



<p>Cacti is an open source monitoring tool which covers network as well as graphing.&nbsp; It was designed to provide an easy way to monitor your system on industry-standard data logging tool -RRDtoll.Cacti is an important tool to harnesses the power of RRDtool&#8217;s storage and functionality of graphing.&nbsp;Cacti is user-friendly and easy to use for managing network monitoring and configurations. Some dependencies needed to install Cacti on Centos 8.</p>



<p>Here are some important features of Cacti.&nbsp;</p>



<ul><li>User Management</li></ul>



<ul><li>&nbsp;Advanced graphing templates</li></ul>



<ul><li>&nbsp;Data acquisition methods in multiple formats</li></ul>



<ul><li>Faster polling of metrics&nbsp;</li></ul>



<h3><strong>Why we need monitoring?</strong></h3>



<p>&nbsp;Monitoring is a main feature of any infrastructure. In order to look over your systems that what&#8217;s going on it&#8217;s best way to use some tools like Cacti to monitor.</p>



<p>&nbsp;So, in this tutorial we will cover the cacti installation and its related modules.</p>



<h3><strong>Step 1: How to Install build tools and system dependencies.&nbsp;</strong></h3>



<p>First of all install all development tools and gcc tools for system dependencies.</p>



<p>After it <a href="https://www.osradar.com/how-to-install-gcc-development-tools-on-centos-8-rhel-8/">install Gcc &amp; Development Tools</a> </p>



<p>Now install SNMP packages </p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="801" height="599" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/installation-of-snmp.png" alt="" class="wp-image-14979" srcset="https://www.osradar.com/wp-content/uploads/2019/10/installation-of-snmp.png 801w, https://www.osradar.com/wp-content/uploads/2019/10/installation-of-snmp-300x224.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/installation-of-snmp-768x574.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/installation-of-snmp-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2019/10/installation-of-snmp-265x198.png 265w, https://www.osradar.com/wp-content/uploads/2019/10/installation-of-snmp-696x520.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/installation-of-snmp-562x420.png 562w" sizes="(max-width: 801px) 100vw, 801px" /></figure></div>



<h3><strong>Step 2: Install php and required extensions.&nbsp;</strong></h3>



<p class="has-background has-cyan-bluish-gray-background-color">sudo dnf install -y net-snmp net-snmp-utils rrdtool</p>



<p><br> Install PHP and its extension as it is required.</p>



<p class="has-background has-cyan-bluish-gray-background-color"><br> sudo dnf install @php<br> sudo dnf install -y php php-{mysqlnd,curl,gd,intl,pear,recode,ldap,xmlrpc,snmp,mbstring,gettext,gmp,json,xml,common}</p>



<p> Make sure PHP is installed version is correct and loaded modules.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="726" height="89" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/php-v-.png" alt="" class="wp-image-14977" srcset="https://www.osradar.com/wp-content/uploads/2019/10/php-v-.png 726w, https://www.osradar.com/wp-content/uploads/2019/10/php-v--300x37.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/php-v--696x85.png 696w" sizes="(max-width: 726px) 100vw, 726px" /></figure></div>



<p><br> Now edit this file <strong>/etc/php.ini file.</strong></p>



<p class="has-background has-cyan-bluish-gray-background-color"> $ grep date.timezone /etc/php.ini<br> ; http://php.net/date.timezone<br> date.timezone = <strong>Africa/Nairobi</strong></p>



<p> Set PHP memory limit to 400M</p>



<p class="has-background has-cyan-bluish-gray-background-color">memory.limit = 400M;</p>



<p> Start php-fpm service.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> sudo systemctl enable &#8211;now php-fpm</p>



<p> Make sure status is working.</p>



<figure class="wp-block-image"><img loading="lazy" width="801" height="594" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/check-php-fpm-services.png" alt="" class="wp-image-14978" srcset="https://www.osradar.com/wp-content/uploads/2019/10/check-php-fpm-services.png 801w, https://www.osradar.com/wp-content/uploads/2019/10/check-php-fpm-services-300x222.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/check-php-fpm-services-768x570.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/check-php-fpm-services-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2019/10/check-php-fpm-services-265x198.png 265w, https://www.osradar.com/wp-content/uploads/2019/10/check-php-fpm-services-485x360.png 485w, https://www.osradar.com/wp-content/uploads/2019/10/check-php-fpm-services-696x516.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/check-php-fpm-services-566x420.png 566w" sizes="(max-width: 801px) 100vw, 801px" /></figure>



<h3><strong>Step 3: How to install Apache Web Server.</strong>&nbsp;</h3>



<p>Type given command to Install Apache httpd server.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> sudo dnf install @httpd</p>



<p> Now, enable Apache services.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> sudo systemctl enable &#8211;now httpd</p>



<p> Verify that Apache is running properly.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="723" height="485" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/check-status-of-Apache-server.png" alt="" class="wp-image-14980" srcset="https://www.osradar.com/wp-content/uploads/2019/10/check-status-of-Apache-server.png 723w, https://www.osradar.com/wp-content/uploads/2019/10/check-status-of-Apache-server-300x201.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/check-status-of-Apache-server-696x467.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/check-status-of-Apache-server-626x420.png 626w" sizes="(max-width: 723px) 100vw, 723px" /></figure></div>



<p>Make sure to give firewall permissions on https ports.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> sudo firewall-cmd &#8211;add-service={http,https} &#8211;permanent<br> sudo firewall-cmd &#8211;reload</p>



<h3><strong>Step 4: Install and configure database server.</strong></h3>



<p>If you&#8217;ve already installed a Database Server let&#8217;s start with that. If you don&#8217;t have install MySQL or MariaDB database server.<br> When you&#8217;ve done installation of any database Server follow the next steps.<br> Let&#8217;s create a database alongwith user for Cacti.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> $ mysql -u root -p<br> CREATE DATABASE cacti;<br> GRANT ALL ON cacti.* TO &#8216;cacti&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;StrongDBPassword&#8217;;<br> FLUSH PRIVILEGES<br> exit</p>



<p> Set up tuning MariaDB database  <br> Do settings with this file<strong> /etc/my.cnf.d/mariadb-server.cnf</strong> in <strong>[mysqld] </strong>section.<br> Restart mariadb service after setting upon according to your own requirements.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> sudo systemctl restart mariadb</p>



<h3><strong>Step 5: Download and Configure Cacti.&nbsp;</strong></h3>



<p>Create a directory and download the latest release of Cacti in it.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> mkdir cacti &amp;&amp; cd cacti<br> curl -SL https://www.cacti.net/downloads/cacti-latest.tar.gz | tar &#8211;strip 1 -xzf &#8211;</p>



<p> Now move the created folder to <strong>/var/www/html directory.</strong></p>



<p class="has-background has-cyan-bluish-gray-background-color"> cd ..<br> sudo mv cacti/ /var/www/html/</p>



<p> Import database data.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> mysql -u root -p cacti &lt; /var/www/html/cacti/cacti.sql</p>



<p> Make sure timezone setting is done.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql</p>



<p> Give Cacti user access to timezone database.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="763" height="517" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/Grant-cacti-access.png" alt="" class="wp-image-14983" srcset="https://www.osradar.com/wp-content/uploads/2019/10/Grant-cacti-access.png 763w, https://www.osradar.com/wp-content/uploads/2019/10/Grant-cacti-access-300x203.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/Grant-cacti-access-696x472.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/Grant-cacti-access-620x420.png 620w" sizes="(max-width: 763px) 100vw, 763px" /></figure></div>



<p>Configure SELinux.</p>



<p class="has-background has-cyan-bluish-gray-background-color">sudo semanage fcontext -a -t httpd_sys_rw_content_t &#8220;/var/www/html/cacti(/.*)?&#8221;<br>
sudo restorecon -Rv /var/www/html/cacti</p>



<p>Now again restart Apache service to attain modifications.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> sudo systemctl restart httpd php-fpm</p>



<p> Now the last step is to configure cacti.<br> Access the file<strong> /var/www/html/cacti/include/config.php.</strong><br> Set up database connection parameters according to your own requirements.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="493" height="194" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/configure-cacti.png" alt="" class="wp-image-14984" srcset="https://www.osradar.com/wp-content/uploads/2019/10/configure-cacti.png 493w, https://www.osradar.com/wp-content/uploads/2019/10/configure-cacti-300x118.png 300w" sizes="(max-width: 493px) 100vw, 493px" /></figure></div>



<p>Create a log file for Cacti system.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> tocuh /var/www/html/cacti/log/cacti.log</p>



<p> Grant directory Permissions.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> sudo chown -R apache:apache /var/www/html/cacti</p>



<p>Setup cron job.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> sudo crontab -u apache -e</p>



<p> Add following line in above line.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> */5 * * * * php /var/www/html/cacti/poller.php &gt; /dev/null 2&gt;&amp;1</p>



<h3><strong>Step 6: Access Cacti Installation wizard.&nbsp;</strong></h3>



<p>You can visit this link <strong>http://[ServerIP/Hostname]/cacti</strong> to enter into Installation Wizard.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="702" height="380" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/user-login.png" alt="" class="wp-image-14987" srcset="https://www.osradar.com/wp-content/uploads/2019/10/user-login.png 702w, https://www.osradar.com/wp-content/uploads/2019/10/user-login-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/user-login-696x377.png 696w" sizes="(max-width: 702px) 100vw, 702px" /></figure></div>



<p> Change the default credentials.</p>



<figure class="wp-block-image"><img loading="lazy" width="566" height="67" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/login-credentials.png" alt="" class="wp-image-14989" srcset="https://www.osradar.com/wp-content/uploads/2019/10/login-credentials.png 566w, https://www.osradar.com/wp-content/uploads/2019/10/login-credentials-300x36.png 300w" sizes="(max-width: 566px) 100vw, 566px" /></figure>



<p> Now make sure to change the password.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="698" height="347" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/change-password.png" alt="" class="wp-image-14988" srcset="https://www.osradar.com/wp-content/uploads/2019/10/change-password.png 698w, https://www.osradar.com/wp-content/uploads/2019/10/change-password-300x149.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/change-password-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/10/change-password-696x347.png 696w" sizes="(max-width: 698px) 100vw, 698px" /></figure></div>



<p> Accept Licencse Agreement and proceed.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="676" height="427" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/license-agreement.png" alt="" class="wp-image-14990" srcset="https://www.osradar.com/wp-content/uploads/2019/10/license-agreement.png 676w, https://www.osradar.com/wp-content/uploads/2019/10/license-agreement-300x189.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/license-agreement-665x420.png 665w" sizes="(max-width: 676px) 100vw, 676px" /></figure></div>



<p> Make sure to have all options green.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="642" height="403" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/green-options.png" alt="" class="wp-image-14991" srcset="https://www.osradar.com/wp-content/uploads/2019/10/green-options.png 642w, https://www.osradar.com/wp-content/uploads/2019/10/green-options-300x188.png 300w" sizes="(max-width: 642px) 100vw, 642px" /></figure></div>



<p> Choose your installation type.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="653" height="434" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/installation-type.png" alt="" class="wp-image-14992" srcset="https://www.osradar.com/wp-content/uploads/2019/10/installation-type.png 653w, https://www.osradar.com/wp-content/uploads/2019/10/installation-type-300x199.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/installation-type-632x420.png 632w" sizes="(max-width: 653px) 100vw, 653px" /></figure></div>



<p> Verify Directory Permission Checks.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="695" height="466" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/directory-permissions.png" alt="" class="wp-image-14993" srcset="https://www.osradar.com/wp-content/uploads/2019/10/directory-permissions.png 695w, https://www.osradar.com/wp-content/uploads/2019/10/directory-permissions-300x201.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/directory-permissions-626x420.png 626w" sizes="(max-width: 695px) 100vw, 695px" /></figure></div>



<p> Check out all binaries located &amp; move further.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="704" height="465" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/binaries-check.png" alt="" class="wp-image-14994" srcset="https://www.osradar.com/wp-content/uploads/2019/10/binaries-check.png 704w, https://www.osradar.com/wp-content/uploads/2019/10/binaries-check-300x198.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/binaries-check-696x460.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/binaries-check-636x420.png 636w" sizes="(max-width: 704px) 100vw, 704px" /></figure></div>



<p> Choose your required option.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="695" height="463" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/profile.png" alt="" class="wp-image-14995" srcset="https://www.osradar.com/wp-content/uploads/2019/10/profile.png 695w, https://www.osradar.com/wp-content/uploads/2019/10/profile-300x200.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/profile-630x420.png 630w" sizes="(max-width: 695px) 100vw, 695px" /></figure></div>



<p> Choose the template you want.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="694" height="468" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/template-setup.png" alt="" class="wp-image-14996" srcset="https://www.osradar.com/wp-content/uploads/2019/10/template-setup.png 694w, https://www.osradar.com/wp-content/uploads/2019/10/template-setup-300x202.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/template-setup-623x420.png 623w" sizes="(max-width: 694px) 100vw, 694px" /></figure></div>



<p> Make sure settings are okay.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="698" height="467" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/database-settings.png" alt="" class="wp-image-14998" srcset="https://www.osradar.com/wp-content/uploads/2019/10/database-settings.png 698w, https://www.osradar.com/wp-content/uploads/2019/10/database-settings-300x201.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/database-settings-696x466.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/database-settings-628x420.png 628w" sizes="(max-width: 698px) 100vw, 698px" /></figure></div>



<p> Confirm Installation.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="698" height="464" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/confirm-instalation.png" alt="" class="wp-image-14999" srcset="https://www.osradar.com/wp-content/uploads/2019/10/confirm-instalation.png 698w, https://www.osradar.com/wp-content/uploads/2019/10/confirm-instalation-300x199.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/confirm-instalation-696x463.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/confirm-instalation-632x420.png 632w" sizes="(max-width: 698px) 100vw, 698px" /></figure></div>



<p> After a while installation process will be completed. </p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="695" height="461" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/install-1.png" alt="" class="wp-image-15000" srcset="https://www.osradar.com/wp-content/uploads/2019/10/install-1.png 695w, https://www.osradar.com/wp-content/uploads/2019/10/install-1-300x199.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/install-1-633x420.png 633w" sizes="(max-width: 695px) 100vw, 695px" /></figure></div>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="698" height="460" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/install-2.png" alt="" class="wp-image-15001" srcset="https://www.osradar.com/wp-content/uploads/2019/10/install-2.png 698w, https://www.osradar.com/wp-content/uploads/2019/10/install-2-300x198.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/install-2-696x459.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/install-2-637x420.png 637w" sizes="(max-width: 698px) 100vw, 698px" /></figure></div>



<figure class="wp-block-image"><img loading="lazy" width="700" height="296" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/install-3.png" alt="" class="wp-image-15002" srcset="https://www.osradar.com/wp-content/uploads/2019/10/install-3.png 700w, https://www.osradar.com/wp-content/uploads/2019/10/install-3-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/install-3-696x294.png 696w" sizes="(max-width: 700px) 100vw, 700px" /></figure>



<h3><strong>Step 7: Monitor Linux Servers with Cacti</strong></h3>



<p> Let&#8217;s start &amp; enable <strong>snmpd </strong>daemon to start.</p>



<p class="has-background has-cyan-bluish-gray-background-color"> sudo systemctl enable &#8211;now snmpd</p>



<p> Make sure it&#8217;s working properly.</p>



<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" width="699" height="382" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/1-20.png" alt="" class="wp-image-15006" srcset="https://www.osradar.com/wp-content/uploads/2019/10/1-20.png 699w, https://www.osradar.com/wp-content/uploads/2019/10/1-20-300x164.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/1-20-696x380.png 696w" sizes="(max-width: 699px) 100vw, 699px" /></figure></div>



<p> Now add the linux server for monitoring.</p>



<p> Login as Cacti admin to see the process.</p>



<p> Console&gt;Create&gt;New Device</p>



<p> Now give server details &amp; save configuration.</p>



<p> Congratulations! You&#8217;ve all done.<br> If have any question about this tutorial leave a comment.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-cacti-on-centos-rhel-8/">How to Install Cacti on Centos / RHEL 8</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-cacti-on-centos-rhel-8/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
