• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Resolved MySQL Backup Cron Job - Empty DB File

JohnnyU

Basic Pleskian
I run a backup of my website db every day and it worked fine in Plesk 12
Now i upgraded from Plesk 12 to Onyx and the job still works but the file created is empty

When i run this from the console it works and the db is created with normal sql file size but it doesn't work from Plesk cron - empty file!

Plesk reports that the command ran succesfully, there is no error. For user & pass i use the db connection, different from Plesk user & pass


This is my cron job: mysqldump -u MYUSER -pMYPASS DBNAME > /var/www/vhosts/MYDOMAIN.com/backup/backup_`date +\%d.\%m.\%Y`.sql

Also i tried this: mysqldump -u admin -p`cat /etc/psa/.psa.shadow` DBNAME > /var/www/vhosts/MYDOMAIN.com/backup/db_backup_`date +\%d\%m\%Y`.sql
 
Last edited:
Working with: /usr/bin/mysqldump -u admin -p`cat /etc/psa/.psa.shadow` MYDB > /var/www/vhosts/MYSITE.com/backup/backup_`date +\%d.\%m.\%Y`.sql
 
Back
Top