码迷,mamicode.com
首页 > 数据库 > 详细

MySQL 网络访问连接

时间:2017-07-18 22:17:00      阅读:404      评论:0      收藏:0      [点我收藏+]

标签:1.2   proc   slist   process   for   ssl   set   --   logs   

分主机查看连接数

mysql> select count(1) 连接数,host_db.host 客户端 from ( select substring_index(host,:,1) as "host" from processlist ) host_db group by host_db.host;
+------+---------------+
| 连接数 | 客户端          |
+------+---------------+
|    3 | 172.16.91.237 |
|    3 | 172.16.91.249 |
|  186 | bogon         |
|   12 | localhost     |
+------+---------------+
4 rows in set

分数据库查看连接数

mysql> select count(1) 连接数,db 数据库 from processlist group by db;
+------+--------------------+
| 连接数 | 数据库               |
+------+--------------------+
|    1 | NULL               |
|    3 | bpm                |
|    3 | bpm_ys             |
|    3 | epm                |
|    2 | information_schema |
|  119 | perform2           |
|    5 | pms                |
|   39 | portal             |
|   29 | security_ys        |
+------+--------------------+
9 rows in set

 

MySQL 网络访问连接

标签:1.2   proc   slist   process   for   ssl   set   --   logs   

原文地址:http://www.cnblogs.com/cpuz/p/7202789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!