Welcome to Pandora FMS Community!

Find answers, ask questions, and connect with our community around the world.

  • Backup for Pandora

    Posted by IzanRLucas on April 7, 2008 at 14:36

    Hi, we are concerned about making backup of our Pandora service. We have thought about copying the pandora mysql database so in case of problem:

    1. Installed pandora server as normal.
    2. Use the install.php script for Pandora Console, that will create a pandora database.
    3. Substitute the blank database for our backed-up database.

    Is that possible???

    Any other idea???

    IzanRLucas replied 16 years, 10 months ago 2 Members · 2 Replies
  • 2 Replies
  • Sancho

    Administrator
    April 7, 2008 at 15:36
    2321 Karma points
    Community awards: bulb Bright ideas
    Community rank: tentacle_master_icon Tentacle Master
    Like it
    Up
    0
    Down
    Drop it
    ::

    Hi, we are concerned about making backup of our Pandora service. We have thought about copying the pandora mysql database so in case of problem:

    1. Installed pandora server as normal.
    2. Use the install.php script for Pandora Console, that will create a pandora database.
    3. Substitute the blank database for our backed-up database.

    Is that possible???

    Any other idea???

    Much more simple. A simple mysqldump will dump your database contents. A blank database with the same name (without data), should be enought to receive dump generated by mysqldump.

    Make the backup

    mysqldump -u root -p pandora > /backup/pandoradb_backup.sql

    Restore the backup (from scratch)

    mysql -u root -p
    create database pandora;
    use pandora;
    source /backup/pandoradb_backup.sql

    Probably you also need to give access to your console pandora user:

    grant all privileges on pandora.* to pandora@localhost identified by ‘mypassword’;

    Ready.

    I’ve added this to our FAQ because is a good question 😉

  • IzanRLucas

    Member
    April 7, 2008 at 15:40
    0 Karma points
    Community rank: tentacle-noob-1 Tentacle noob
    Like it
    Up
    0
    Down
    Drop it
    ::

    Thanks a lot, Nil!!!!