Skip to content

Latest commit

 

History

History
75 lines (52 loc) · 2.79 KB

Upgrading-Cacti.md

File metadata and controls

75 lines (52 loc) · 2.79 KB

Upgrading Cacti Under UNIX Compatible Operating Systems

To upgrade Cacti under UNIX-style operating systems is very straightforward. To upgrade Cacti on Windows, you should use the instructions in the link below:

Upgrading in Windows

Before you begin, ensure that both your Apache/NGINX and your Crontab or systemd-based pollers run as the same account. In most Linux operating systems, this will be the apache account. Under SLES, it will be www-run. For this guide, we will use the apache account, but please adjust accordingly.

  1. Disable Polling:

    Go to Console >> Settings >> Poller >> Data Collection Enabled and switch it off.

  2. Backup the Cacti Configuration File:

    Backup the config.php file located in <cacti_dir>/include/.

    shell> cp <cacti_dir>/include/config.php <backup_location>
  3. Backup the Old Cacti Database:

    Create a backup of the current Cacti database.

    shell> mysqldump -l --add-drop-table --lock-tables=false cacti > mysql.cacti

    On newer versions of MariaDB

    shell> mariadb-dump   -l --add-drop-table --lock-tables=false cacti > mysql.cacti
    

    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.

  4. Backup the Old Cacti Directory:

    Backup the old Cacti directory with the exception of the RRD files, which should not need backup.

    shell> tar --exclude=*.rrd -zcf cacti_backup_YYYYMMDD.tgz cacti
  5. Extract the Distribution Tarball:

    shell> tar -xzvf cacti-version.tar.gz
  6. Copy the Distribution Tarball Over the Existing Installation:

    shell> /bin/cp -rpf cacti-version cacti
  7. Set Appropriate Permissions:

    Set the appropriate permissions on Cacti's directories for graph/log generation. Execute these commands from inside Cacti's directory to change the permissions.

    shell> chown -R apache:apache rra/ log/
  8. Recreate the Cache Folder (Optional):

    If you are using Performance > Image Caching or Realtime Graphing, recreate the cache folder and correct the permissions.

    shell> mkdir cache
    shell> chown -R apache:apache cache
  9. Point Your Browser:

Point your web browser to http://your-server/cacti/ and follow the on-screen instructions to update your database to the new version.

  1. Re-enable Polling:

    Go to the console and re-enable the poller. It will take two polling cycles to update the remote pollers.

  2. If Remote Pollers Fail to Update:

    Try to rebuild the Resource Cache by going to Console >> Utilities and wait 2 polling cycles.

    If that fails, update the remote pollers that have failed to update.