首页 > 代码库 > MySQL 网络访问连接
MySQL 网络访问连接
分主机查看连接数
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 网络访问连接
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。