• 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

Recent content by WebHostingAce

  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

    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...
  5. 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.
  6. 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...
  7. 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)
  8. 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.
  9. 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!
  10. 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...
  11. 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..."...
Back
Top