首页
首页 > 国内 > 详情

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

2023-08-02 20:58:00来源:互联网


(资料图)

查看连接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中文网

标签:

上一篇:《王国之泪》平均通关时间为59小时 全收集222小时
下一篇:最后一页

资源

课程

华北东北地区有降雪 冷空气将影响长江中下游以北大部地区