How to Monitor System Resource Usage Over a Specified Time Using Atop
This guide explains monitoring system resource usage using atop over a specified time. Atop command…
Ubuntu Servers
What is Cacti?
It is a solution based on network graphs and was mainly aimed at developing the strength of RRD TOOL Data Storage and its function. It polls fast, and also has an advanced graph template, it can acquire multiple data at the same time and many other user management features. Its interface is very easy to use and helps in the LAN installations upgrade up to various Complex networks with different devices.
The following is the installation Cacti from the source code –
> Apache Web Server Installation along with PHP support in Ubuntu Server.
> sudo apt-get install apache2 apache2-common apache2-mpm-prefork apache2-utils
sudo apt-get install libapache2-mod-php4 php4-cli php4-common php4-cgi
> For PHP5 support installation. Use the following command
sudo apt-get install libapache2-mod-php5 php5-cli php5-common php5-cgi
This will install Apache2 webserver
There is a requirement for the download of the latest RRD tool –
sudo cd /usr/local/src/
sudo wget http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub/rrdtool-1.2.15.tar.gz
sudo tar xfvz rrdtool-1.2.15.tar.gz
sudo cd rrdtool-1.2.15
sudo ./configure
sudo make
sudo make install
RRD Tool installation Complete
Download the Latest Version from http://www.cacti.net/download_cacti.php to the Apache Web Server document root.
The default is /var/www/; the download can be completed if the root path is changed.
sudo cd /var/www/
sudo wget http://www.cacti.net/downloads/cacti-0.8.6i.tar.gz
sudo mysql –user=root mysql
mysql> GRANT ALL ON cacti.* TO cactiuser@localhost IDENTIFIED BY ’password entered here’;
mysql> flush privileges;
mysql> exit
Explore more hosting insights, tips and industry updates.
This guide explains monitoring system resource usage using atop over a specified time. Atop command…
No wonder, cloud computing is considered to be the mainstream technology for most companies…
Apt-file to explore the Debian packages: when one uses only the command line on Linux,…