Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This page describes how to perform a basic backup of the platform. You could use this when you are performing a minor upgrade or in addition to VM snapshots for a major upgrade

Before you begin:


Note

Check you have enough space on your destination systems before you start the backup


Excerpt

To perform a basic backup of the platform, run the following backups:

  1. Back up MySQL

    Code Block
    mysqldump --routines --triggers kinton > kinton_dump_`date +%d%m%y`.sql
    mysqldump --routines --triggers kinton_accounting > kinton_accounting_dump_`date +%d%m%y`.sql


  2. Back up Redis

    Code Block
    redis-cli
    lastsave
    bgsave
    lastsave


  3. Back up the contents of opt abiquo

    Code Block
    tar cvfz opt-abiquo.tgz /opt/abiquo


  4. Backup user interface

    Code Block
    tar cvfz var-www-html-ui.tgz /var/www/html/ui


When the backup steps are done, store the resulting files in a secure location.


Related topics

...