{"id":619,"date":"2018-06-21T06:13:07","date_gmt":"2018-06-21T06:13:07","guid":{"rendered":"http:\/\/hyderabadwebhosting.in\/blog\/?p=619"},"modified":"2018-06-13T03:21:03","modified_gmt":"2018-06-13T03:21:03","slug":"how-to-monitor-your-centos-7-server-using-cacti","status":"publish","type":"post","link":"https:\/\/hyderabadwebhosting.in\/blog\/how-to-monitor-your-centos-7-server-using-cacti\/","title":{"rendered":"How to Monitor your CentOS 7 Server using Cacti"},"content":{"rendered":"<p><span style=\"font-size: large;\">Cacti is a free and open source network graphing solution. It uses RRDTool for data gathering and graphing. It provides many features such as remote and local data collectors, network discovery, device management automation, graph templating etc.<\/span><\/p>\n<p><span style=\"font-size: large;\">In this tutorial, we will install Cacti on CentOS 7 server.<\/span><\/p>\n<p><span style=\"font-size: large;\">Prerequisite<\/span><\/p>\n<p><span style=\"font-size: large;\">Minimal CentOS 7 server<\/span><\/p>\n<p><span style=\"font-size: large;\">Root privileges<\/span><\/p>\n<p><span style=\"font-size: large;\"><b>Step 1 &#8211; Installing Apache<\/b><\/span><\/p>\n<p><span style=\"font-size: large;\">It is recommended to update the server before installing any package so that the existing packages and repositories are updated.<\/span><\/p>\n<p><span style=\"font-size: large;\">yum -y update<\/span><\/p>\n<p><span style=\"font-size: large;\">Once you have your system updated, you can proceed to install the Apache web server.<\/span><\/p>\n<p><span style=\"font-size: large;\">yum -y install httpd<\/span><\/p>\n<p><span style=\"font-size: large;\">Now start Apache web server and enable it to start at boot time using the following command.<\/span><\/p>\n<p><span style=\"font-size: large;\">systemctl start httpd<\/span><\/p>\n<p><span style=\"font-size: large;\">systemctl enable httpd<\/span><\/p>\n<p><span style=\"font-size: large;\"><b>Step 2 &#8211; Installing PHP<\/b><\/span><\/p>\n<p><span style=\"font-size: large;\">Cacti support all the version of PHP greater than 5.3. But in this tutorial, we will install PHP 7.1 as PHP v5.3 has reached the end of life. Installing the latest version of PHP will ensure the maximum security and performance of the application.<\/span><\/p>\n<p><span style=\"font-size: large;\">The default YUM repository of CentOS does not have PHP 7.1 included, hence you will need to add the Webtatic repository in your system. Webtatic repository requires EPEL repository to work. Run the following command to install EPEL repository.<\/span><\/p>\n<p><span style=\"font-size: large;\">yum -y install epel-release<\/span><\/p>\n<p><span style=\"font-size: large;\">yum -y update<\/span><\/p>\n<p><span style=\"font-size: large;\">Type the commands to install Webtatic repository.<\/span><\/p>\n<p><span style=\"font-size: large;\">rpm -Uvh https:\/\/mirror.webtatic.com\/yum\/el7\/webtatic-release.rpm<\/span><\/p>\n<p><span style=\"font-size: large;\">yum -y update<\/span><\/p>\n<p><span style=\"font-size: large;\">Type the following command to install PHP 7.1 along with all the required dependencies.<\/span><\/p>\n<p><span style=\"font-size: large;\">yum -y install php71w php71w-snmp php71w-mysqli php71w-cli php71w-ldap php71w-xml php71w-session php71w-sockets php71w-pcre php71w-gd php71w-dom php71w-posix php71w-mbstring<\/span><\/p>\n<p><span style=\"font-size: large;\">To check if PHP is installed successfully, you can run:<\/span><\/p>\n<p><span style=\"font-size: large;\">php -v<\/span><\/p>\n<p><span style=\"font-size: large;\">You should get output similar to this.<\/span><\/p>\n<p><span style=\"font-size: large;\">[root@liptan-pc ~]# php -v<\/span><\/p>\n<p><span style=\"font-size: large;\">PHP 7.1.6 (cli) (built: Jun 10 2017 07:28:42) ( NTS )<\/span><\/p>\n<p><span style=\"font-size: large;\">Copyright (c) 1997-2017 The PHP Group<\/span><\/p>\n<p><span style=\"font-size: large;\">Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies<\/span><\/p>\n<p><span style=\"font-size: large;\">Now you will need to configure few configurations in PHP. Open the PHP configuration file, php.ini using your favourite text editor. In this tutorial, we will be using nano editor. If you do not have nano installed, you can run yum -y install nano.<\/span><\/p>\n<p><span style=\"font-size: large;\">Find the following line and Uncomment the line and set the timezone according to your region. For example:<\/span><\/p>\n<p><span style=\"font-size: large;\">[Date]<\/span><\/p>\n<p><span style=\"font-size: large;\">; Defines the default timezone used by the date functions<\/span><\/p>\n<p><span style=\"font-size: large;\">; http:\/\/php.net\/date.timezone<\/span><\/p>\n<p><span style=\"font-size: large;\">date.timezone = Asia\/Kolkata<\/span><\/p>\n<p><span style=\"font-size: large;\"><b>Step 3 &#8211; Installing MariaDB<\/b><\/span><\/p>\n<p><span style=\"font-size: large;\">MariaDB is a fork of MySQL database. To install MariaDB on your server, run:<\/span><\/p>\n<p><span style=\"font-size: large;\">yum -y install mariadb mariadb-server<\/span><\/p>\n<p><span style=\"font-size: large;\">Run the following commands to start MariaDB and enable it to start at boot time.<\/span><\/p>\n<p><span style=\"font-size: large;\">systemctl start mariadb<\/span><\/p>\n<p><span style=\"font-size: large;\">systemctl enable mariadb<\/span><\/p>\n<p><span style=\"font-size: large;\">Now run the following commands to secure your MariaDB installation.<\/span><\/p>\n<p><span style=\"font-size: large;\">mysql_secure_installation<\/span><\/p>\n<p><span style=\"font-size: large;\">The above command will run a script to secure fresh MariaDB installation. The script will ask for the existing root user password, we have just installed MariaDB, the root password is not set, just press enter to proceed further.<\/span><\/p>\n<p><span style=\"font-size: large;\">The script will ask you if you want to set a root password for your MariaDB installation, choose y and set a strong password for the installation. Most of the questions are self-explanatory and you should answer yes or y to all the questions. The output will look like shown below.<\/span><\/p>\n<p><span style=\"font-size: large;\">To create a database we will need to login to MySQL command line first. Run the following command for same.<\/span><\/p>\n<p><span style=\"font-size: large;\">mysql -u root -p<\/span><\/p>\n<p><span style=\"font-size: large;\">The above command will login to MySQL shell of the root user, it will prompt for the password of the root user. Provide the password to login. Now run the following query to create a new database for your Cacti installation.<\/span><\/p>\n<p><span style=\"font-size: large;\">CREATE DATABASE cacti_data;<\/span><\/p>\n<p><span style=\"font-size: large;\">The above query will create a new database named cacti_data. You can use any other name for your database if you want. Make sure that you use semicolon at the end of each query as the query always ends with a semicolon.<\/span><\/p>\n<p><span style=\"font-size: large;\">Once the database is created you can create a new user and grant all the permissions to the user for the database. To create a new database user, run the following query.<\/span><\/p>\n<p><span style=\"font-size: large;\">CREATE USER &#8216;cacti_user&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;StrongPassword&#8217;;<\/span><\/p>\n<p><span style=\"font-size: large;\">The above query will create a user with username cacti_user. You can use any username you prefer instead of cacti_user. Replace StrongPassword with a very strong password. Now provide the all the privileges to your database user over the database you have created. Run the following command.<\/span><\/p>\n<p><span style=\"font-size: large;\">GRANT ALL PRIVILEGES ON cacti_data.* TO &#8216;cacti_user&#8217;@&#8217;localhost&#8217;;<\/span><\/p>\n<p><span style=\"font-size: large;\">Now run the following command to immediately apply the changes on the database privileges.<\/span><\/p>\n<p><span style=\"font-size: large;\">FLUSH PRIVILEGES;<\/span><\/p>\n<p><span style=\"font-size: large;\">Exit from MySQL prompt using the following command.<\/span><\/p>\n<p><span style=\"font-size: large;\">EXIT;<\/span><\/p>\n<p><span style=\"font-size: large;\">You will also need to populate the time zone table. Run the following command to populate the timezone tables.<\/span><\/p>\n<p><span style=\"font-size: large;\">mysql_tzinfo_to_sql \/usr\/share\/zoneinfo | mysql -u root -p mysql<\/span><\/p>\n<p><span style=\"font-size: large;\">Provide the MySQL root password to proceed. Once the tables are populated, you will need to provide select access to Cacti user account over the tables. Login to MySQL prompt again using:<\/span><\/p>\n<p><span style=\"font-size: large;\">mysql -u root -p<\/span><\/p>\n<p><span style=\"font-size: large;\">Now run the following query.<\/span><\/p>\n<p><span style=\"font-size: large;\">GRANT SELECT ON mysql.time_zone_name TO &#8216;cacti_user&#8217;@&#8217;localhost&#8217;;<\/span><\/p>\n<p><span style=\"font-size: large;\">FLUSH PRIVILEGES;<\/span><\/p>\n<p><span style=\"font-size: large;\">The above query will SELECT give access to cacti_user on<\/span><\/p>\n<p><span style=\"font-size: large;\"><b>Step 4 &#8211; Installing and Configuring Cacti<\/b><\/span><\/p>\n<p><span style=\"font-size: large;\">Cacti require few more dependencies, run the following command to install them.<\/span><\/p>\n<p><span style=\"font-size: large;\">yum -y install net-snmp rrdtool net-snmp-utils<\/span><\/p>\n<p><span style=\"font-size: large;\">As we have all the dependencies ready, we can now download the install package from Cacti website.<\/span><\/p>\n<p><span style=\"font-size: large;\">cd \/var\/www\/html<\/span><\/p>\n<p><span style=\"font-size: large;\">wget http:\/\/www.cacti.net\/downloads\/cacti-1.1.10.tar.gz<\/span><\/p>\n<p><span style=\"font-size: large;\">You can always find the link to the latest version of the application on Cacti download page. Extract the archive using the following command.<\/span><\/p>\n<p><span style=\"font-size: large;\">tar xzvf cacti*.tar.gz<\/span><\/p>\n<p><span style=\"font-size: large;\">Rename your Cacti folder using:<\/span><\/p>\n<p><span style=\"font-size: large;\">mv cacti-1*\/ cacti\/<\/span><\/p>\n<p><span style=\"font-size: large;\">Now import the Cacti database by running the following command.<\/span><\/p>\n<p><span style=\"font-size: large;\">cd \/var\/www\/html\/cacti<\/span><\/p>\n<p><span style=\"font-size: large;\">mysql cacti_data &lt; cacti.sql -u root -p<\/span><\/p>\n<p><span style=\"font-size: large;\">The above command will import the cacti.sql database into cacti_data using the user root. It will also ask you the password of root user before importing the database.<\/span><\/p>\n<p><span style=\"font-size: large;\">Now edit Cacti configuration by running the following command.<\/span><\/p>\n<p><span style=\"font-size: large;\">nano \/var\/www\/html\/cacti\/include\/config.php<\/span><\/p>\n<p><span style=\"font-size: large;\">Now find the following lines and edit them according to your MySQL database credentials.<\/span><\/p>\n<p><span style=\"font-size: large;\">\/* make sure these values reflect your actual database\/host\/user\/password *\/<\/span><\/p>\n<p><span style=\"font-size: large;\">$database_type = &#8216;mysql&#8217;;<\/span><\/p>\n<p><span style=\"font-size: large;\">$database_default = &#8216;cacti_data&#8217;;<\/span><\/p>\n<p><span style=\"font-size: large;\">$database_hostname = &#8216;localhost&#8217;;<\/span><\/p>\n<p><span style=\"font-size: large;\">$database_username = &#8216;cacti_user&#8217;;<\/span><\/p>\n<p><span style=\"font-size: large;\">$database_password = &#8216;StrongPassword&#8217;;<\/span><\/p>\n<p><span style=\"font-size: large;\">$database_port = &#8216;3306&#8217;;<\/span><\/p>\n<p><span style=\"font-size: large;\">$database_ssl = false;<\/span><\/p>\n<p><span style=\"font-size: large;\"><b>Step 5 &#8211; Configure Permissions and Firewall<\/b><\/span><\/p>\n<p><span style=\"font-size: large;\">Now you will need to provide the ownership of the application to web server user using the following command.<\/span><\/p>\n<p><span style=\"font-size: large;\">chown -R apache:apache \/var\/www\/html\/cacti<\/span><\/p>\n<p><span style=\"font-size: large;\">You may also need to allow HTTP traffic on port 80 through the firewall if you are running one. Run the following commands for same.<\/span><\/p>\n<p><span style=\"font-size: large;\">firewall-cmd &#8211;zone=public &#8211;permanent &#8211;add-service=http<\/span><\/p>\n<p><span style=\"font-size: large;\">firewall-cmd &#8211;reload<\/span><\/p>\n<p><span style=\"font-size: large;\">Now you will need to disable your SELinux because Proxy configuration does not work with SELinux policies. To temporary disable SELinux without restarting the server, run the following command.<\/span><\/p>\n<p><span style=\"font-size: large;\">setenforce 0<\/span><\/p>\n<p><span style=\"font-size: large;\">To completely disable the SELinux you will need to edit \/etc\/selinux\/config file.<\/span><\/p>\n<p><span style=\"font-size: large;\">nano \/etc\/selinux\/config<\/span><\/p>\n<p><span style=\"font-size: large;\">Find the following line:<\/span><\/p>\n<p><span style=\"font-size: large;\">SELINUX=enforcing<\/span><\/p>\n<p><span style=\"font-size: large;\">Change it to:<\/span><\/p>\n<p><span style=\"font-size: large;\">SELINUX=disabled<\/span><\/p>\n<p><span style=\"font-size: large;\">Now complete the installation using a web browser, go to the following link using your favourite web browser.<\/span><\/p>\n<p><span style=\"font-size: large;\">http:\/\/Your_Server_IP\/cacti<\/span><\/p>\n<p><span style=\"font-size: large;\">You will see the following page.<\/span><\/p>\n<p><a href=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_13.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-620 size-full\" src=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_13.jpg\" alt=\"\" width=\"550\" height=\"271\" srcset=\"https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_13.jpg 550w, https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_13-300x148.jpg 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/a><\/p>\n<p><span style=\"font-size: large;\">Accept the license agreement to proceed further.<\/span><\/p>\n<p><span style=\"font-size: large;\">In next interface you will see the pre-installation, all the required dependencies are met.<\/span><\/p>\n<p><a href=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_14.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-621 size-full\" src=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_14.jpg\" alt=\"\" width=\"550\" height=\"271\" srcset=\"https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_14.jpg 550w, https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_14-300x148.jpg 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/a><\/p>\n<p><span style=\"font-size: large;\">Proceed to next interface.<\/span><\/p>\n<p><span style=\"font-size: large;\">In installation type, choose New Primary Server and proceed next.<\/span><\/p>\n<p><a href=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_16.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-622 size-full\" src=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_16.jpg\" alt=\"\" width=\"550\" height=\"271\" srcset=\"https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_16.jpg 550w, https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_16-300x148.jpg 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/a><\/p>\n<p><span style=\"font-size: large;\">In next interface, you will need to provide the locations to the binaries. Path to RRDTool and PHP binaries are correct. For all other binaries, provide the path \/usr\/bin\/binary_name. For example, for snapwalk binary, the path is \/usr\/bin\/snmpwalk.<\/span><\/p>\n<p><a href=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_17.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-623 size-full\" src=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_17.jpg\" alt=\"\" width=\"550\" height=\"328\" srcset=\"https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_17.jpg 550w, https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_17-300x179.jpg 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/a><\/p>\n<p><span style=\"font-size: large;\">In next interface, you will see that the server has write access to all the required folders.<\/span><\/p>\n<p><a href=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_18.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-624 size-full\" src=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_18.jpg\" alt=\"\" width=\"550\" height=\"271\" srcset=\"https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_18.jpg 550w, https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_18-300x148.jpg 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/a><\/p>\n<p><span style=\"font-size: large;\">In template setup, choose Local Linux Machine and click Finish.<\/span><\/p>\n<p><a href=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_191.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-625 size-full\" src=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_191.jpg\" alt=\"\" width=\"550\" height=\"271\" srcset=\"https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_191.jpg 550w, https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_191-300x148.jpg 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/a><\/p>\n<p><span style=\"font-size: large;\">You will be taken to the login page. Login using username admin and password admin, you will be taken to dashboard.<\/span><\/p>\n<p><a href=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_21.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-626 size-full\" src=\"http:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_21.jpg\" alt=\"\" width=\"550\" height=\"271\" srcset=\"https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_21.jpg 550w, https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/uploads\/2018\/06\/Image_21-300x148.jpg 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/a><\/p>\n<p>Installation of Cacti is now finished, you can use the application to moniter your server using interactive graphs.<\/p>\n<div><\/div>\n<div class=\"pdf24Plugin-cp\"> \t<form name=\"pdf24Form0\" method=\"post\" action=\"https:\/\/doc2pdf.pdf24.org\/wordpress.php\" target=\"pdf24PopWin\" onsubmit=\"var pdf24Win = window.open('about:blank', 'pdf24PopWin', 'resizable=yes,scrollbars=yes,width=600,height=250,left='+(screen.width\/2-300)+',top='+(screen.height\/3-125)+''); pdf24Win.focus(); if(typeof pdf24OnCreatePDF === 'function'){void(pdf24OnCreatePDF(this,pdf24Win));}\"> \t\t<input type=\"hidden\" name=\"blogCharset\" value=\"Cw1x07UAAA==\" \/><input type=\"hidden\" name=\"blogPosts\" value=\"MwQA\" \/><input type=\"hidden\" name=\"blogUrl\" value=\"yygpKSi20tfPqExJLUpMSkwpT03KyC8uycxL18vM00\/KyU8HAA==\" \/><input type=\"hidden\" name=\"blogName\" value=\"86hMSS1KTEpMUQhPTVLwyC8uycxLBwA=\" \/><input type=\"hidden\" name=\"blogValueEncoding\" value=\"gzdeflate base64\" \/><input type=\"hidden\" name=\"postId_0\" value=\"MzO0BAA=\" \/><input type=\"hidden\" name=\"postTitle_0\" value=\"88gvVyjJV\/DNz8ssyS9SqMwvLVJwTs0r8Q9WMFcITi0qSy1SKC3OzEtXcE5MLskEAA==\" \/><input type=\"hidden\" name=\"postLink_0\" value=\"DctJDoAwCADAFyFHE3\/ThRQSBQPUxt\/r3Icz7zgQ+e3kpZa+qLJFio5NFOtpA9kWpMFlKmkOr02HRpoWsEOQP+Qw4x\/QSkvBDw==\" \/><input type=\"hidden\" name=\"postAuthor_0\" value=\"c\/QLDVAICHJ08XD0AwA=\" \/><input type=\"hidden\" name=\"postDateTime_0\" value=\"MzIwtNA1MNM1MlQwMLMCIXMA\" \/><input type=\"hidden\" name=\"postContent_0\" value=\"zVx7c9s2Ev+\/nwLj3nSajCRKtmM7dpw5J1Fa3zmJz3bumut0PBAJiqhJgiVAPTI399lvFw+SkhWnpGnnpjO1SAEL7O5vn4DyInv5QmY0JVItY3a8FYpU9SX\/zA5JTPMpO9p6+Zr6ihMuCSVhzhihaUBExmCKKHKfkZSpuchvyDSnWcTTKbyPC8VFOiCnihSSSXJx8eZKiJiEIicBVZRMqYpYjoORmpupJ2S5mPEAJiU0XZKQUVXk8CQLPyJUkpwlQplNxMKnsaHnizhmvhK57JX7Cbj0xYzlyx4J2IzDToEinbKEpYrQQomE4i57ZnmiWJLF8Ab2xJQ\/eOGhWF6+8LKX3734upBOU6IikJECujmncY\/MGZnzOCY8lYrCXyNGkZLXsP6HS7JPJMthe01XOs9Zzv4ouOSKNZz6jqc8AZGt7aAhlQshUEt8xmM2ZbLh7BeTl5eKZWREfvj+YHs0OiKnRkAo+JOM+hFwNXnZVPwKAZozXySg3oAFRAlSZIANBnphllEyYYBA5lRi4LcksOgN4AJwC2Op0hPYgkuNBful1IjLWSZA7qBhfAGUzBJBUx0ui4T0l3Z2w7kfUkDyUhQkojP9ISdyKQG9bjM9\/a0PRMCUfGZk4VCIvBkpA0AnLSFot+9oRkplQUMS78UcvqW5ur0bLWmW0kkMmlK4eTMQNDNB6CmegOAlKge5CcH0xRyfUPkwtyk3Rnq+iu06bdipaNiNtyHiTGN7k2mc\/3zewi6M05FFlgmUoAUACFmC5yMiRLLg\/8DJgtwB\/Cl5NtgZkFcF2NNXPRrO3R+M0CvjxxlMBVCiGaJGA2NHGCxCEvOQDers4HfgbZlU67vRS7BUgtfXoxK64AkATjK\/yLlaanhkLAdLBm2DLcA8HEezLOa+dulNEXAF0wMW0iJW5NPHd5WZL5G49ZaBAJtPAX\/a7hzvPPXjIkCji5gzTM1Bag2PBkYQ\/2ITBZvz68RBxDX7HWwco309BsDx+fis\/gXQxjA3IBdFutkQ6na\/NvueFs8yFvdzFjMq2SO6vqtlZjBhGZR1DjcIrymXeQZ7+ziLtPXKQ89LeJ6LfDC3pAewrgcMeCze99xLJ4cBzP4WsrhT7aWJxgIGzLmKSidggRUA8jMMmakPQe2euMiibH80t3\/6Mk0y9zlZyj9i7p786mMc0HLQIonLuUxqp+AehX\/DlHSPmQ\/OwX6eBu5TIJJyACBgUa49kQpzzaYSFgTcmH9DuHFM4AstnyA0SEd92GJYxPGyCrh5kR42XAX2SPqzhpM+wXoyEkUMuTNTRBQqA48tecJhBOofPXdTXf6aQ3T9a8wzRVOQMPnvb9+TVruzoBvskR9B0U\/Ij5OCx+qQ\/A0c1WhItoejfTLcP9w+ONzdhm\/J+6tL8qRpYBPZMufTSMEaT8jo+fP9vqaLrhzX\/ykXRdaQ5r8xWI3TKU8hRO4AA8MeubXOgVlHj71ifpSKWEx54zQY859bscIXacinGPhCNi+fdEhD7CFjA\/IBSy9l2VwZQ0LIyHuoswEk+jZF0gEmpDOBwRM8BlsowgJ0jxiPvxTiJy7DSmkqqvGh3nMgqjiovy\/NYsUSyJpzwKFNMfmWp8Gal4tRPejmPqYm2zcJe\/laMvMC08TPAl\/6vsgDnXQII46cTXV5+hbKUbagUPexpmb76xtw2b81nHRE3rAQ9in1Bl3GUW4USuWATJbmS6xcwiL1tfIbr4MBDOIXQgHKYQ+pDdw6DYmtzCXH5ERy6v1dxDdQd7dMcHc2JbjvKEDwzasWSa6daVsUWPpD1vZuefmPM90cmGBwJldVUHTjhUu\/dNnRa+O91yCeIOVg4v7229XXX8rnZFULORb+RKl033LI8nLfgqgdGXST+d3ywLLA1sElEIw6WtUCOlG5NlSv64Ra1BR0ImZlsmocKzJDifRzCLO17YeQ4Ueb969Dmp2gSVB5oxtpK20KjN3oQHKSUSmhMAi0M9c++vdCqlrqYlfpmSxQN3PsFLQg9OzgQntmVgb7kqBCXR6KsqEQFjn279rUWeucYMDgJq7MaWplAghe2xky\/EUd9yBRE0ICCsoIADJWudD9mxoF5HhVuO8EcGkryD8KKEd1rMXWjmRx2GeLLKYp1QUXkl5WiRdN5RyksgRvjnvTtZ5NrUtCRnk2PdMsx0LcQKy6YUhmnkKgBUwPWmSmumYHNp2HK0O3SyYwLUnxg\/GEDoU6ToY8l+quyhGFJWlz56Gth\/QLo71+1o3RrLEiIwYvrdJK4PfQA+rhgNIEIOYUXiJgfcaAnJte8+owJ7sB2ex9QLum\/C51kEK2VuqhRKrtm9\/DF72+GJ9cjcmbk6uTVyeXY0isgOI1rnTUWrBm91pOm\/efgtqD2lID8snmdCAz3S8VaPt6XMVsOb1my2BdFIFuOjkQk\/ALJCJZwn3Im1Piuq2mS4R9I7tBKp0l4UM8p0t0Q+DyTQ1bkRi0aZ\/aDMvuWFpJBGX2uiIZ7VXtMUVaNdEylidcF6nSVFzMjHSwW0k9NovawPYLCGsJlo+X4wuTXu0dGSXiKvrF\/tFf7V99chKB67PP5PTN+P3V6dvT8Rvy6pObfqk96Lm1Czu0W+RpiWmV4icNqWrTt5FXDkJFQWwKYTYaGKMaP\/WpFww8N6h6lQkHHzwWWo8Qxt6zmksoVV0edpQlxIoOCR4zrYKqbNBbaN3hbJsq+qeLk\/dX5OTsjJxfnP7z9Gz80\/iSfHhfN9mn5OpDYxAcdZmb6SYUVGcBB+7jpe7OmsrGj2iKkhTpqsQqITcuEs8+Xv5cE0ZTRsYLiBwhBA0bX2z86PCIYfzL6dVRix6PyZJiKcqonomsiN2plj4J0WWZwhz7K63gW1OrmbJdlqw+8zQU10pcY9T3Cpl7MoLcyUPK+BX5D1nPCMyLxmeelVEaHa1mh1VqOiClgzec6VzOsW4bFCt5kjN4yPeYr7BbgCkvfGHit\/H+vi8K8P2lnVupkbPVzMQih04pTw1+Dh83gbojY2nnZi7HZ+PXV+he9M50I+Aa1Xut\/fAjuJn7WvfGAGTZmvIZq2m84oE0rvdcb2N3U28DLfC1bdXhs4ZW6+M827nXTcIEz7PrHfzeV3xydQ6c3LPZnzJlWvx5Hii83eFe9AvF46Y9qxNZ1qsu7NbZwkPFYKlrWkwIUsB5APVTLGhQr+rKs3ztzo245myCdyWacusHxJvR3JvP516kkqYua46NeduGAxIDjS3TjLP7lp5+1x8N4L\/hQNF8MP3cIkigPGyGHLp2KaDuxmWlt49Z145L9aUULapSpBnIcEDGC5XDezM+9yO0lg6jInBMFp9nNm972k4CF8wlhK7ign0FYMHt3O+MWKU89cwnr4UH5ok+bkchWbm6JGeyRPNMOxPhOkgNpFrFnCp9JD\/E6sg8Dx6inK+Jp1qkKsfS0hPrzVSA044Zd6LviVW5kWsjrRf7VU\/M3fvRCztyZYHWQsN4ImJ1u3oE07WC9fnKBhV79uKBZ5YfZFGbVCHcfLxiLjtpHjFObDhBWe2uY5EDflpxUEdTBr2nJKl1CRhQm9G40B4\/1BmZXhB4LmiFEg8TCg9165Uaf9rUVP\/iqF0rPEw\/dqmMtoeW2UpF0x3vHK9mSPj9vWkj99rtlcTvm2VVtMsa+\/iLqV174qWyjjttMtQWQM9SEt\/ZGe7dm6SUMVAMAdvsqGVS+KxMCl+XR7zntf4RmttbSOnmkMK0SAs3HibXGxkQ1iH6RzzbFP3xIlF1+U77yw6DvK\/b3P0LWBJvhR2aPx1ELUx9ErpcLY8p7pb8fHV1TiB1CUPuY3KjQXEwBIZyUUwjw5gVt2tYYpnoPDeUN3fU0rJ1d9yt2feTwCECa6njrJiAOtwr7CzSFA+27QsaBPookfvsGFPKDpbNGeZ5XeAs4FIf8Gk3DXUVT4sFBFyfYtMOCvfFci1Elhfp9C1t3ZBz0zIBYsBrSNgzxQvZIqdQsrkl3DCcIwoFEUIfUTqs1s5xO7oZyhRLQdk+I8MWRzQCLxbo7pdjAHflmLglSB1vPaZ8T7IYh9jYrq91tMsbbhPr5v5F07QaeD59\/\/GXYyPN5lexXuueoTnibru21UEbzDtN3jo\/tI6Sagc6ycVcN\/SnwpVeK1K72Xwjpza1qZJteQmeML++1OC\/Pj1v7Uw1GCVbv1WoS8F1cpREkJ4db9kdREuouCBaBsAMJiH4Ww6eepNYTL151gfogSFBvpaZund7ODrwhnveaQK0r0c7g9+zKQRLnoCcYADMPt6K6eflFgmYL8wzlcvU3yJ+DJkCPMV8mvrmXBoW4Eiov7c9JMhWH2\/lbRGZ+51uEIKLOt7aAjkFKjreevZsuEUihnfDjre290d6QfAYZk3ZzaIEVpn3SEcU+zvD4WK0e6Apw+f5lpYXyrNQokd+TOiir9k7xIWzxRMyGg5nsAH9tEU8QAD98y0d32eZu50FysJDnGnOzA9w7n+b4DQF17nAmw2AgpDWL187FGc5669eFLjz9qtOAhKmHhbuu53BffQwcN\/9FnDf7Rzuu48M9\/Pq1zaruGwB7JUgg9VpecXlPZtDVgUIgLzosvq9jLMlXPlh4bvXGXy3Hwa+e98Cvnudw3fvkeF7y5327q4pseOg6rcfJjyluU7ezynk9PDW\/ewTAYq3ld0I7Wd9kefMV+YWLrplc63EjemtLJYhRX3AOEEJ4pilPoFaucTbM5VZSjMod24MqWWvIsBlRQMPKnDUwxrLfmfGsvMwxrL\/VWPZ2T7o2lj2OzeWfWMs+8\/\/D4zFJB\/2ZpPtquDP4uY63a9OG2+lIubgQj4sIg86Q+TuwyDy4Fu474POEXnw+O7b\/oIdQaeKrMwYzvTP5E3T4R31I\/dDCR+S8hsCFT6X0cNi7vmoM9A9exjQ2R0+MurMqp3C7vnokXFXdg4meCvmhqXlsbO+GmMOks01GdP+KM8XaJDAS528ulMB\/armSus0AyqjiaB58KBY3e4OqnsPAtXtb4HU7c6But01Tk\/rFRP+atv9qyWpOecEJ1f\/fRo2pzcchCQi5ajG2u+CLGx1pEeaM2b+wRCM07h0wGewCfz\/d\/8D\" \/> \t\t<a href=\"https:\/\/www.pdf24.org\" target=\"_blank\" title=\"www.pdf24.org\"><img src=\"https:\/\/hyderabadwebhosting.in\/blog\/wp-content\/plugins\/pdf24-post-to-pdf\/img\/sheep_32x32.png\" alt=\"www.pdf24.org\" border=\"0\" height=\"32\" \/><\/a> \t\t<span class=\"pdf24Plugin-cp-space\">&nbsp;&nbsp;<\/span> \t\t<span class=\"pdf24Plugin-cp-text\">Send article as PDF<\/span> \t\t<span class=\"pdf24Plugin-cp-space\">&nbsp;&nbsp;<\/span> \t\t<input class=\"pdf24Plugin-cp-input\" style=\"margin: 0px;\" type=\"text\" name=\"sendEmailTo\" placeholder=\"Enter email address\" \/> \t\t<input class=\"pdf24Plugin-cp-submit\" style=\"margin: 0px;\" type=\"submit\" value=\"Send\" \/> \t<\/form> <\/div>","protected":false},"excerpt":{"rendered":"<p>Cacti is a free and open source network graphing solution. It uses RRDTool for data gathering and graphing. It provides many features such as remote and local data collectors, network discovery, device management automation, graph templating etc. In this tutorial, we will install Cacti on CentOS 7 server. Prerequisite Minimal CentOS 7 server Root privileges\u2026 <span class=\"read-more\"><a href=\"https:\/\/hyderabadwebhosting.in\/blog\/how-to-monitor-your-centos-7-server-using-cacti\/\">Read More &raquo;<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_eb_attr":"","footnotes":""},"categories":[6],"tags":[],"class_list":["post-619","post","type-post","status-publish","format-standard","hentry","category-vps"],"_links":{"self":[{"href":"https:\/\/hyderabadwebhosting.in\/blog\/wp-json\/wp\/v2\/posts\/619","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hyderabadwebhosting.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hyderabadwebhosting.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hyderabadwebhosting.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hyderabadwebhosting.in\/blog\/wp-json\/wp\/v2\/comments?post=619"}],"version-history":[{"count":1,"href":"https:\/\/hyderabadwebhosting.in\/blog\/wp-json\/wp\/v2\/posts\/619\/revisions"}],"predecessor-version":[{"id":627,"href":"https:\/\/hyderabadwebhosting.in\/blog\/wp-json\/wp\/v2\/posts\/619\/revisions\/627"}],"wp:attachment":[{"href":"https:\/\/hyderabadwebhosting.in\/blog\/wp-json\/wp\/v2\/media?parent=619"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hyderabadwebhosting.in\/blog\/wp-json\/wp\/v2\/categories?post=619"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hyderabadwebhosting.in\/blog\/wp-json\/wp\/v2\/tags?post=619"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}