Backup commands: Difference between revisions

From Knot Atlas
Jump to navigationJump to search
No edit summary
No edit summary
Line 8: Line 8:
*To create a backup of the web directory, login as wiki and then
*To create a backup of the web directory, login as wiki and then


cd /www/html/w
cd /www/html/w; tar cvzf web-backup-<yymmdd>.tar.gz *
tar cvzf web-backup-<yymmdd>.tar.gz *

Revision as of 21:01, 5 September 2005

  • To backup the SQL database
mysqldump -u wikiuser -p<password> wikidb > wikidb-backup-<yymmdd>.sql
gzip -9 wikidb-backup-<yymmdd>.sql

(with the obvious substitutions).

  • To create a backup of the web directory, login as wiki and then
cd /www/html/w; tar cvzf web-backup-<yymmdd>.tar.gz *