• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Cannot backup in 11.5.3 #19

HoracioS

Regular Pleskian
I got the following error when trying to backup:

Warning: mysql "forum"
Failed to pack files backup_forum_1_1310221723 in /var/lib/psa/dumps/domains/xxxxxxx.com/databases/forum_1 [ 106140502016 bytes free of 107374182400 bytes total on mount point 0]
Warning: mysql "forum"
mysqldump: Got error: 23: Out of resources when opening file './forum/vbp__trackerstatus.MYD' (Errcode: 24) when using LOCK TABLES

Any help?

Best regards,
Horacio
 
mysqldump: Got error: 23: Out of resources when opening file './forum/vbp__trackerstatus.MYD' (Errcode: 24) when using LOCK TABLES

According to here - "OS error code 24: Too many open files" which lines up with the more general error 23 "Out of resources".

So it seems as though you are running out of file handles. This is usually server-end setting/problem, either in MySQL, or in the OS itself.

Perhaps check/adjust the --open-files-limit setting in MySQL itself and see if that helps.

Also, perhaps try running the dump, while no one else is using the DB, with the --single-transaction setting instead of --Lock-File, as several people suggest this will work one table at a time instead of opening them all at once (therefore using less file handles).

Beyond that you'll probably have to find a root cause as to why this particular server is running out of resources. which would probably involve troubleshooting by disabling as many services/processes as possible and see if the dump goes through. Then figure out from there who the culprit is that's eating too many resources and perhaps not freeing them correctly.
 
Back
Top