Time for action – upgrading the Plugin Architecture
Logon to your Cacti server as root.
Change to the Cacti installation directory:
cd /var/www/html/cacti
Download the PIA:
wget http://www.cacti.net/downloads/pia/cacti-plugin-0.8.7g-PA-v2.9.tar.gz
Unpack the archive:
tar -xzvf cacti-plugin-0.8.7g-PA-v2.9.tar.gz
A new directory will be created named
cacti-plugin-arch
.Create a backup of your
config.php
file:cp include/config.php include/config.php.bak
Copy the replacement files to your Cacti installation:
'cp' –R cacti-plugin-arch/files-0.8.7g/* .
Restore your original
config
file:cp include/config.php.bak include/config.php
Import the additional SQL statements:
mysql -u root -p cacti < cacti-plugin-arch/pa.sql
What just happened?
You just upgraded the Plugin Architecture on your Cacti instance by replacing the existing Cacti files with the provided patched versions.