Difference between revisions of "Cacti: instalasi di Ubuntu"

From OnnoWiki
Jump to navigation Jump to search
 
Line 1: Line 1:
Before installing cacti you need to make sure to install all dependencies.
+
Sebelum instalasi Cacti kita perlu menginstalasi semua dependency.
  
1 – Lamp server
+
==Instal Dependency==
 
 
First step is to install Lamp server (Apache, Mysql, PHP)
 
  
 
  sudo apt-get install apache2 mysql-server php5 libapache2-mod-php5
 
  sudo apt-get install apache2 mysql-server php5 libapache2-mod-php5
 
2 – RRDtools
 
 
A useful open source tool for storage and retrieval of time series data.
 
 
 
  sudo apt-get -y install rrdtool
 
  sudo apt-get -y install rrdtool
 
3 – SNMP and SNMPd
 
 
If you want to monitor the localhost where cacti is installed you need to install and configure the service snmpd.
 
 
 
  sudo apt-get -y install snmp snmpd
 
  sudo apt-get -y install snmp snmpd
  
Now after installing all dependencies we start the installation of cacti.
+
==Install Cacti dan Spine==
 
 
4 – Cacti and Spine
 
 
 
If you want a faster way to poll servers for information than the default php script cmd.php, you need to install cacti-spine.
 
  
 
  sudo apt-get -y install cacti cacti-spine
 
  sudo apt-get -y install cacti cacti-spine
  
Popup message will appear like this just select OK and move on.
+
Pada Popup message pilih OK.
  
 
1
 
1

Latest revision as of 07:12, 27 July 2015

Sebelum instalasi Cacti kita perlu menginstalasi semua dependency.

Instal Dependency

sudo apt-get install apache2 mysql-server php5 libapache2-mod-php5
sudo apt-get -y install rrdtool
sudo apt-get -y install snmp snmpd

Install Cacti dan Spine

sudo apt-get -y install cacti cacti-spine

Pada Popup message pilih OK.

1

Now it will ask you for a webserver that you will use it, we choose Apache2 since that’s what we installed in the dependencies.

4

Next it will ask to configure the Cacti database, select Yes.

2

Now it will ask for your root password of MySQL database.

3

Before we start the web configuration part, we need to start the snmpd service.

sudo /etc/init.d/snmpd start

Now you can access http://ip-of-you-server/cacti after installation, the first login, the default account and password are “admin”.

Click Next.

5

Select new install and click Next

installation

If everything is green, which it should be if you followed all the steps, click Next.

6

Now you need to type the login and password, the default account and password are “admin”.

Then you will be prompted to change the password.

8

After login in to Cacti you should see similar to the following screen.

9

5 – Setup spine

In Console -> Cacti Settings -> Poller, Change the poller Type from comd.php to spine.

spine

6 – Rebuild Poller Cache

Whenever the Poller Interval is changed, the cache must be emptied. To do this, click “System Utilities” under the Utilities heading on the left-hand navigation panel.Click on “Rebuild Poller Cache” to empty the cache.

In about 5 minutes you’ll see the first graphs of localhost server start populating under the graphs tab.

10

Done!



Referensi