• 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

Search results

  1. WebHostingAce

    Question backup freezes and system/SQL hangs

    How about if you backup locally? does it work? Also how about the memory usage during the backup?
  2. WebHostingAce

    Question Mysql memory usage and memory used by system reach 90% of available ram and then crash

    Also try - "Dedicated FPM application served by nginx" for your websites.
  3. WebHostingAce

    Question Mysql memory usage and memory used by system reach 90% of available ram and then crash

    I don’t think the issue you’re seeing is directly caused by MariaDB. Given the FPM memory usage and the CPU spikes, it looks more like the server is simply running tight on resources at times. As I mentioned earlier: Fast spike + slow reclaim ⇒ the OOM killer targets the largest process...
  4. WebHostingAce

    Question Mysql memory usage and memory used by system reach 90% of available ram and then crash

    I think .. then simply your server requires more RAM.
  5. WebHostingAce

    Question Mysql memory usage and memory used by system reach 90% of available ram and then crash

    Ok. If I understand correctly, you are talking about buffer/cache. Not the physical memory usage by MariaDB. Page cache is global and reclaimable; MySQL can’t “flush” or “release” it— the kernel does that on demand. Fast spike + slow reclaim => OOM kills the biggest target (often mysqld). Try...
  6. WebHostingAce

    Question Mysql memory usage and memory used by system reach 90% of available ram and then crash

    Do you mean that the MySQL memory usage itself is actually growing over 30 GB or so? ~15 GB under load is normal.
  7. WebHostingAce

    Question Mysql memory usage and memory used by system reach 90% of available ram and then crash

    It sounds like you’re describing a situation where, during the backup process, memory usage (specifically the buff/cache value) increases, and after the backup completes that memory isn’t released back to the “free” pool. If that’s the case, this is actually the expected behavior of Linux. Have...
  8. WebHostingAce

    Question Mysql memory usage and memory used by system reach 90% of available ram and then crash

    Have you found a solution for this issue? If not, please post your MariaBD current configuration (my.cnf)
  9. WebHostingAce

    Question Anti spam using DNSBL

    Hi @trialotto, I might be wrong, but as far as I know, Spamhaus.org does not allow direct use of their DNSBL now. We need to set up a DQS key and then use it. In my experience, using zen.spamhaus.org directly has resulted in many false positives. Thank you.
  10. WebHostingAce

    Question Restarting Dedicated PHP-FPM for all the domains

    Sorry! I understand what is happening now. systemctl restart plesk-php83-fpm_* Only restart active plesk-php83-fpm_* Thank you for your help!
  11. WebHostingAce

    Question Restarting Dedicated PHP-FPM for all the domains

    @Raul A Thank you! If I stop a “Dedicated PHP-FPM” via the Plesk Panel and run: systemctl restart plesk-php83-fpm_* it doesn’t bring the Dedicated PHP-FPM service back up. However, if I run my script or specify the full path, it starts running again. Example: systemctl restart...
  12. WebHostingAce

    Question Restarting Dedicated PHP-FPM for all the domains

    I think this will work for me. #!/bin/bash # Restart all PHP 8.3 Dedicated FPM services in Plesk echo "Restarting all PHP 8.3 Dedicated FPM pools..." systemctl list-units --type service --all \ | grep -oE 'plesk-php83-fpm_[^ ]+' \ | while read -r svc; do echo "Restarting $svc..."...
  13. WebHostingAce

    Question Restarting Dedicated PHP-FPM for all the domains

    Hi, I’m running about 40 domains in a single subscription, each configured to use Dedicated FPM application served by nginx. My OPcache settings include: opcache.revalidate_path = 0 opcache.validate_timestamps = 0 opcache.memory_consumption = 1024 opcache.interned_strings_buffer = 64...
  14. WebHostingAce

    Question Anti spam using DNSBL

    For Spamhus, you will require a DQS key to make queries. Then use the DNSBL - me8ljir5yl2oaoxg.spamhaus.org
  15. WebHostingAce

    Question Some OPcache settings are overridden by handler-level files

    Hi, In Tools & Settings > PHP Settings, I have configured: opcache.revalidate_path = 0 This setting is correctly reflected in the Loaded Configuration File located at: /var/www/vhosts/system/domain.tld/etc/php.ini However, when checking the PHP info page for the domain, it still shows...
  16. WebHostingAce

    Issue artisan' 'schedule:run' Appeared in a Subscription

    Hi @Sebahat.hadzhi, Thank you for your response. This server only has the current subscription running Magento 2. We do not use Laravel at all. Additionally, I am the only user managing this subscription and the server—there is no other user involved. The subscription was migrated from...
Back
Top