Search This Blog

Showing posts with label MySQL. Show all posts
Showing posts with label MySQL. Show all posts

Sunday, 7 October 2012

How to Backup MySQL Database automatically (for Linux users)

How to Backup MySQL Database automatically (for Linux users)

mysqldump -u root -pPASSWORD --all-databases | gzip > /mnt/disk2/database_`data ' %m-%d-%Y'`.sql.gz

# mysqldump ---user [user name] ---password=[password] 
# [database name] > [dump file]