Page 1 of 1

Manually run daily/weekly/monthly backup scripts?

Posted: Tue Jul 02, 2013 10:57 am
by jbennett
I know that there's an overall script that can be run to back up your Nagios install, but I'm wondering about the daily/weekly/and monthly scripts that are run automatically.

There are times when I come in and the server has been down overnight and the backups haven't run as they should. Since I have checks on those files, I have alerts being generated.

Being able to manually run those scripts would not only take care of those alerts, it would give me the backups that I need as well.

Re: Manually run daily/weekly/monthly backup scripts?

Posted: Tue Jul 02, 2013 12:34 pm
by lmiltchev
You can run:

Code: Select all

cd /usr/local/nagiosxi/scripts
./backup_xi.sh
or

Code: Select all

cd /root/scripts
./automysqlbackup
./autopostgresqlbackup
depending on what you are monitoring.

Hope this helps.

Re: Manually run daily/weekly/monthly backup scripts?

Posted: Tue Jul 02, 2013 1:17 pm
by jbennett
lmiltchev wrote:

Code: Select all

cd /root/scripts
./automysqlbackup
./autopostgresqlbackup
depending on what you are monitoring.

Hope this helps.
This is what I was looking for. Many thanks!