• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

how to backup all mysql databases of all clients

igoldman

Regular Pleskian
Hello,

I would like to know how to backup all mysql databases of all my domain accounts in the server.

I found the following command :

mysqldump.exe -uadmin -p(admin password) --all-databases

but I don't know how to use this command and which argumants I need to use in order to backup all mysql databases
 
If you want to backup all client databases you should execute the following commands:
cmd> cd %plesk_dir%\databases\mysql\bin
cmd> mysqldump.exe -uadmin -padmin_passwd -P3306 --all-databases > backup_all_databases.txt
The backup_all_databases.txt file will be locate in %plesk_dir%\databases\mysql\bin folder.
But if you want to backup the Plesk's databases you should execute the following commands:
cmd> cd %plesk_dir%\mysql\bin
cmd> mysqldump.exe -uadmin -padmin_passwd -P8306 --all-databases > backup_all_databases.txt
The backup_all_databases.txt file will be locate in %plesk_dir%\mysql\bin folder.
 
Hello ,
first of all thanks about your reply ,

I would like to ask what happend if I don't want to dump all the databases to 1 file but I do want that each database will be dump to seperate file , so what I need to do ?
 
1.Create batch file e.g. dump.cmd
2.mysqldump.exe -uadmin -padmin_passwd -P3306 first_db > first_db.sql
3.mysqldump.exe -uadmin -padmin_passwd -P3306 second_db > second_db.sql

and so on ....

John S.G.
 
Back
Top