Page 1 of 1

Manually Delete Scheduled Backups

Posted: Mon Aug 31, 2015 3:19 pm
by geoffmyers
Is there a manual/cli method to delete backups scheduled via the UI? We are having an issue with the php ssh module and want to stop the backups from occurring. Because of the issue with the module we are unable to get to the page and delete the backup schedule.

Thanks,

Geoff

Re: Manually Delete Scheduled Backups

Posted: Mon Aug 31, 2015 4:31 pm
by ssax
If you want them to stop occurring you could rename the script it runs:

Code: Select all

mv /usr/local/nagiosxi/scripts/backup_xi.sh /usr/local/nagiosxi/scripts/backup_xi.sh.old
Then when you're ready to resume backups:

Code: Select all

mv /usr/local/nagiosxi/scripts/backup_xi.sh.old /usr/local/nagiosxi/scripts/backup_xi.sh

Re: Manually Delete Scheduled Backups

Posted: Mon Aug 31, 2015 4:53 pm
by geoffmyers
Perfect.. thanks for the easy solution.

Re: Manually Delete Scheduled Backups

Posted: Tue Sep 01, 2015 8:56 am
by hsmith
geoffmyers wrote:Perfect.. thanks for the easy solution.
Is there anything else we can do for you regarding this issue?