MySQLBackupScript: Difference between revisions

From DrewWiki
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:
==Crontab Entry==
==Crontab Entry==
/etc/crontab;
/etc/crontab;
<pre>0 4 * * * drew /home/drew/cron/mysql_backup.sh >> /home/drew/cron/mysql_backup.log;</pre>
<syntaxhighlight lang=bash>
0 4 * * * drew /home/drew/cron/mysql_backup.sh >> /home/drew/cron/mysql_backup.log;
</syntaxhighlight>

Revision as of 01:20, 25 January 2018

The Script

Moved to GitHub

  • Need to get pw off console command

Crontab Entry

/etc/crontab;

0 4 	* * * 	drew	/home/drew/cron/mysql_backup.sh >> /home/drew/cron/mysql_backup.log;