Answer the question
In order to leave comments, you need to log in
backup-manager doesn't save mysql
Hello!
I can not figure out why the subject happens.
archived empty SQL files are created.
at least I put __ALL__ at least, I prescribe the databases
Password and login correctly. manually mysqldump works.
I don't know where to dig :)
Help :)
UPD: Can you tell me another way to automate backups that support mysqldump?
Answer the question
In order to leave comments, you need to log in
Hand write an executable file, throw it in /etc/cron.daily (/etc/cron.weekly, /etc/cron.monthly), or register its launch in crontab, if necessary, at other time intervals - and enjoy.
More or less like this
#!/bin/bash
cd /home/backupdir
mysqldump -udbuser -pdbpassword dbname | gzip -c > `date "+%Y-%m-%d"`_dbname.sql.gz
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question