当前位置: 首页 > 滚动

2022年01月21日整理发布:如何查mysql的ip地址

来源:互联网    时间:2023-08-02 21:28:56


(资料图)

查看连接mysql的ip地址的方法:直接查询语法为【select SUBSTRING_INDEX(host,":",1) as ip , count(*) from information_schema.processlist 】。

相关学习推荐:mysql数据库

查看连接mysql的ip地址的方法:

1、最直接的办法如下:

select SUBSTRING_INDEX(host,":",1) as ip , count(*) from information_schema.processlist group by ip;

2、要统计数据库的连接数我们通常情况下是统计总数没有细分到每个IP上。现在要监控每个IP的连接数实现方式如下:

> select SUBSTRING_INDEX(host,":",1) as ip , count(*) from information_schema.processlist group by ip;

3、通过直接执行也可以实现:

#mysql -u root -h127.0.0.1 -e"show processlist\G;"| egrep "Host\:" | awk -F: "{ print $2 }"| sort | uniq -c #mysql -u root -h127.0.0.1 --skip-column-names -e"show processlist;"|awk "{print $3}"|awk -F":" "{print $1}"|sort|uniq –c

以上就是如何查mysql的ip地址的详细内容!

来源:php中文网

推荐内容

Copyright   2015-2022 华声导报网 版权所有  备案号:京ICP备2021034106号-36   联系邮箱:55 16 53 8 @qq.com