mysql查询主机地址的方法
打开mysql输入以下命令查询即可。
select SUBSTRING_INDEX(host,':',1) as ip , count(*) from information_schema.processlist group by ip;