Read more

MySQL/MariaDB: Hide all sleeping processes in processlist

Thomas Eisenbarth
December 23, 2015Software engineer at makandra GmbH

If you have many connections to your MySQL or MariaDB (as we have) you might want to filter the list you see when running a SHOW PROCESSLIST. To hide all sleeping processes, you can simply use grep as your pager:

\P grep -v "| Sleep"
Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more Show archive.org snapshot

There is an more advanced way by querying the information_schema database: Show MySQL process list without sleeping connections

Posted by Thomas Eisenbarth to makandra dev (2015-12-23 10:18)