Don't forget to create the cron job to:
1. Check to see if MySQL is running, and if not, to start it.
2. Run the script that performs the backup job.
This is a sample crontab entry for FreeBSD (which is what your server is running) that checks to see if MySQL is running (if it's not, it starts it) and does the backup:
*/15 * * * * your_userid /path/to/mysql startup_options
* 23 * * * your_userid /path/to/backup/script
The first line checks every 15 minutes to see if MySQL is running, and starts it if it's not
The second line runs the backup script every night at 11:00 PM.
The syntax for cron is:
minute hour day month wday user command
Also, the line that identified this system as FreeBSD is this:
FreeBSD 4.4-RELEASE (SERVER) #0
You can check the FreeBSD handbook for more info on using cron:
http://www.freebsd.org/doc/en_US.ISO...ning-cron.html
Hope this helps.