I just installed Automysqlbackup.sh to my server. I wonder what cron job command should be to run it everyday ?

Note: i will set cron job from Cpanel

Path to script is: /home/username/automysqlbackup.sh

Thanks in advance

link|improve this question

71% accept rate
feedback

2 Answers

up vote 1 down vote accepted
0 0 * * *  /home/username/automysqlbackup.sh

This will run the job every night at midnight.

Here's what that job would look like in cpanel:

cPanel cron configuration

link|improve this answer
didnt work. it works when i execute it from SSH but with cron it didnt work :( – Ahmet vardar Oct 7 '10 at 22:51
by the way, i set cron from CPANEL, not from SSH – Ahmet vardar Oct 7 '10 at 22:52
I've edited my answer with a screenshot from cpanel. – ErikA Oct 8 '10 at 0:39
feedback

On my Ubuntu 10.04 LTS server, automysqlbackup.sh included a cronjob. This is what it looks like. It's very simple.

$ cat /etc/cron.daily/automysqlbackup
#!/bin/sh
test -x /usr/sbin/automysqlbackup && /usr/sbin/automysqlbackup

So, automysqlbackup runs as part of the Daily cronjobs. The schedule for the daily cronjobs can be seen in /etc/crontab.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.