Why Does Owl AutoMySQL Kill long Sleeping MySQL Connections?

If you’ve noticed that Owl AutoMySQL is terminating MySQL connections with the status SLEEP and are wondering why, here’s a detailed explanation.

Are Sleeping MySQL Connections Harmful?

At first glance, sleeping connections might seem harmless because they are idle and not actively using CPU. However, they can still cause issues:

  • Memory Usage: Even sleeping connections consume server memory, and excessive idle connections can lead to high RAM usage.
  • Connection Slots: Each sleeping connection occupies a connection slot. If many accumulate, the server can hit the max_connections limit. When this happens, new connections are rejected with the error: "Too many connections."
  • Open Transactions: In some cases, sleeping connections can hold open transactions, preventing other queries from completing.
  • Performance Bottlenecks: It’s not uncommon to see thousands of sleeping queries pile up on busy shared hosting servers, which can severely degrade performance and cause server instability.

Why Does Owl AutoMySQL Kill Sleeping Connections?

Owl AutoMySQL is designed to proactively manage MySQL resource usage on your server. Killing sleeping connections helps:

  • Prevent memory bloat and resource exhaustion.
  • Avoid hitting the max_connections limit.
  • Ensure that new queries can connect without interruptions.
  • Maintain overall server stability and avoid performance degradation.

This approach is a standard best practice, especially on shared hosting environments and for servers not using CloudLinux MySQL Governor. It allows hosting providers to better manage idle connections and ensure that no single website can exhaust MySQL resources.

What If I Don't Want Sleeping Connections Killed?

While we generally do not recommend disabling this behavior, you can add specific MySQL users to the exclusion list in the cPFence configuration file:

nano /opt/cpfence/config.conf

Locate the line:

EXCLUDED_USERS_AUTO_MySQL="user1|user2"

Add the MySQL users you want to exclude from Owl AutoMySQL monitoring, separated by |.

For example:

EXCLUDED_USERS_AUTO_MySQL="my_user1|my_user2|my_user3"

Save the file and restart cPFence:

cpfence --restart

This will prevent AutoMySQL from monitoring or killing queries from the excluded users.


Need Further Assistance?

If you encounter any issues or need additional help, feel free to reach out to our support team via your client portal.

 

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to Enable / Disable cPFence Owl™ ?

cPFence Owl™ is a smart 24/7 monitoring system that provides advanced security features,...

What is cPFence Owl™ / DDos Protection ?

cPFence Owl Monitoring Features cPFence Owl™ offers comprehensive monitoring features to keep...

What Is Owl AutoMySQL® and How Do I Use It?

Managing MySQL resource usage on shared hosting servers can be a daunting task, especially for...

Managing Slow Queries and Scripts Using cPFence Owl™

Note: It is now recommended to use the automatic feature instead of manual blacklisting. To learn...

What is the Recommended SWAP Size with the New Owl AutoMySQL Module?

If you're using the all new Owl AutoMySQL module, We highly recommend disabling SWAP for better...