Upgrading - Cacti
Upgrading - Cacti
3_upgrading#upgrading_cacti
Upgrading Cacti
1. Backup the old Cacti database.
Note: You will probably have to specify the -u and -p flags for the MySQL username and password.
This user must have permission to read from Cacti's database or you will end up with an empty backup.
5. Edit “include/config.php” and specify the database type, name, host, user and password for your Cacti
configuration.
$database_type = "mysql";
$database_default = "cacti";
$database_hostname = "localhost";
$database_username = "cactiuser";
$database_password = "cactiuser";
/*
Edit this to point to the default URL of your Cacti install
ex: if your cacti install as at http://serverip/cacti/ this
would be set to /cacti/
*/
$url_path = "/cacti/";
The $plugins array is required for using the Plugin Architecture (PIA) only. For legacy plugins, those that must be
installed in global.php, we have moved the plugins array out of global.php and into config.php. This was done to
insure that global.php remains pristine. It is a file that is not intended to be modified, so with the PIA installed, you
should not have to.
The variable “URL_PATH” has also been moved from global.php to config.php for the same reason as the plugins
array. For those of you upgrading from very old Plugin Architectures you should know that in the past, we
attempted to “detect” this path. However, the process was not reliable. Therefore, you have to specify that path in
1 of 2 1/27/2012 1:41 AM
manual:087:1_installation.3_upgrading - Cacti Docs http://docs.cacti.net/manual:087:1_installation.3_upgrading#upgrading_cacti
config.php.
7. Copy any relevant custom scripts from the old Cacti directory. Some script are updated between versions.
Therefore, make sure you only over write if the scripts either don't exist or are newer than the distribution's.
8. Copy any relevant custom resource XML files from the old Cacti directory. Some resource XML files are updated
between versions. Therefore, make sure you only over write if the XML files either don't exist or are newer than the
distribution's.
9. Set the appropriate permissions on Cacti's directories for graph/log generation. You should execute these commands
from inside Cacti's directory to change the permissions.
(Enter a valid username for cactiuser, this user will also be used in the next step for data gathering.)
http://your-server/cacti/
12. Follow the on-screen instructions so your database can be updated to the new version.
2 of 2 1/27/2012 1:41 AM