• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Resolved Database backup error and doesn't work

zepelin57

Basic Pleskian
Server operating system version
AlmaLinux 8.8
Plesk version and microupdate number
18.0.56
Hi all,
Backups no longer work correctly since the MariaDB 10.6 upgrade:
Code:
WARNING:(Database object 'xxxxxx_') Unable to make database dump. Error: Failed to exec mysqldump: Exit code: 2: mysqldump: Couldn& execute SHOW FUNCTION STATUS WHERE Db = xxxxx;: Cannot load from mysql.proc. The table is probably corrupted (1728)
WARNING:(Database object 'xxxxxx_') Unable to make database dump. Error: Failed to exec mysqldump: Exit code: 2: mysqldump: Couldn& execute SHOW FUNCTION STATUS WHERE Db = xxxxxx_;: Cannot load from mysql.proc. The table is probably corrupted (1728)

Do you have a solution to resolve the problem?
Thanks for your help.
 
"repair" is not a shell command, but an SQL command. You first need to open a database shell (e.g. plesk db) then you can run
> repair table mysql.proc;
 
Ok Peter, So I did what you asked in SQL, but I still got the error in the daily report last night.
 
mysql.proc repair status OK for all db.
If I do Check and Repair under Plesk everything is OK for all domains, strange!
 
The problem was resolved :
Code:
MYSQL_PWD=`cat /etc/psa/.psa.shadow` mysql_upgrade -uadmin

Thank you so much!
 
Back
Top