• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Not all the data was backed up into

onlinesolutions

Basic Pleskian
Not all the data was backed up into /var/lib/psa/dumps/domains/xyz.com/databases/xyz successfully. Use of chdir('') or chdir(undef) as chdir() is deprecated at /usr/local/psa/PMM/agents/shared/Storage/Bundle.pm line 39.
mysqldump: Couldn't execute 'show table status like 'xyz'': Can't read dir of './xyz/' (errno: 24) (1018)

What is the issue?
 
Hi onlinesolutions,

this issue can be caused by some security limits configured over your operating system. In most cases, the standard limits are set to 1024 for open files, which might be to less for some ( big ) databases.

You could try to edit "/etc/security/limits.conf" and add:
Code:
mysql    soft nofile        6400
mysql    hard nofile        64000
mysql    soft nproc         6400
mysql    hard nproc         64000
After a reboot the new settings will apply and the issue should be gone.

In addition you could set as well a higher "global" open files limit, with an example setting like this:
Code:
*        soft nofile       4096
*        hard nofile       40960
*        soft nproc        4096
*        hard nproc        40960
 
Thanks for your answer. I did that already, but I still needed to increase open_files_limit in /etc/my.cnf for it to work properly.
 
Back
Top