0

I checked my MySQL process list using "show processlist;"and it is showed nothing, But I used "show status like 'Conn%';" to check the connections and it is showed me around 9K connections. Is there any issue on the server.

Please clarify about this.

refer the screenshot

Support
  • 1
  • 1
  • 3
    IIRC the `Connections` counter is total number of connections recorded since the MySQL server process was started, not the number of currently active connections. The number of current connections show up as `Threads_connected` – Bob Aug 26 '20 at 14:41
  • @HermanB - Turn your Comment into an Answer. (I agree with both of your statements.) – Rick James Aug 26 '20 at 20:20

1 Answers1

3

The Connections counter is total number of connections recorded since the MySQL server process was started, not the number of currently active connections. The number of current connections shows up as Threads_connected

Bob
  • 5,335
  • 5
  • 24