8
$ mysqldump -h localhost -u username -p database_name > backup_db.sql

I can use the line above but it is just for one db in the server, can i have a complete backup of the all databases into one backup file?

Or is there some command which serializes this process?

something like below (i added -all which is most probably wrong):

$ mysqldump -u username -h localhost -p -all | gzip -9 > backup_db.sql.gz

Thanks.

Sinan
  • 227
  • 3
  • 6

3 Answers3

15

Use the --all-databases option, it causes all tables in all databases to be dumped:

mysqldump -u username -h localhost -p --all-databases > all_databases.sql
Tommeh
  • 576
  • 4
  • 6
  • thanks for the answer. mysql -u username -h localhost -p --all-databases | gzip -9 > all_databases.sql.gz would zip the output file then right? – Sinan Jun 29 '09 at 13:20
  • btw it says: mysql: unknown option '--all-databases' – Sinan Jun 29 '09 at 13:24
  • I've changed "mysql" to "mysqldump" for you, sorry about that! :) – Tommeh Jun 29 '09 at 13:26
  • 1
    and yes, "| gzip -9f > file.gz" will pipe the SQL into a gzip'ed file. – Tommeh Jun 29 '09 at 13:27
  • ok, works now... i didn't notice that you've changed it. – Sinan Jun 29 '09 at 13:29
  • Just FYI, this could cause table locking or data syncronization issues with certain engines, so be sure you know when is appropriate to fire this off. = ) – anonymous coward Jun 29 '09 at 14:31
  • If you want the backup to be consistent then you should be locking the whole database while running mysqldump. Also, i'd add in the force option aswell, it'll mean that if it hits an error during the dump that it'll continue on rather than just stopping. – theotherreceive Jun 30 '09 at 01:19
5

In addition, I would suggest setting up a my.cnf file so that your password is not visible in the process list. Check this out. It will help you and prevent you from having your SQL DB hacked by anyone else that might have access to your system.

phuzion
  • 2,213
  • 1
  • 19
  • 23
1

I would suggest LVM snapshots for backups of "all databases" as the lock time is likely to be high. However, the displayed lack of investigating the usage string or "man mysql<^M>/all" makes me feel it may be irresponsible to make such a suggestion.

~$ mysqldump
Usage: mysqldump [OPTIONS] database [tables]
OR     mysqldump [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...]
OR     mysqldump [OPTIONS] --all-databases [OPTIONS]
For more options, use mysqldump --help
Bruno Bronosky
  • 4,529
  • 3
  • 26
  • 34