How to check current mysql connections

I want to check home many mysql open database connections on linux.

Asked 20 Dec, 15 at 07:59 AM

Arjun Singh
Php mysql

Answer

Use: Show Status Command To See Open Database Connections. 

Connect To Mysql Server
mysql -u Root -p

then 

mysql> Show Status Like 'Conn%';

like