MySQL: To see connections to the database
use wp_db;
-- see the currently open connections details
SHOW PROCESSLIST;
-- to see the number of currently open connections:
SHOW STATUS WHERE `variable_name` = 'Threads_connected';
-- mysqladmin utility to get a short status message from the MySQL server:
mysqladmin status -u root -p
Comments
Post a Comment