MySQL 网络访问连接

2018-06-17 23:56:00来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

查看 /etc/hosts配置文件

[hotspot@bogon ~]$ cat /etc/hosts
127.0.0.1  localhost localhost.localdomain localhost4 localhost4.localdomain
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
172.16.11.52 bogon

分主机查看连接数

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

上面表格中bogon和localhost都是访问本机,但连接数的差异,是因为jdbc.url的ip地址使用的不同,如果是127.0.0.1 会被映射为localhost,如果是172.16.11.52 则映射为bogon

 

分数据库查看连接数

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

bash 命令行查看连接数

mysql -uroot -proot --database='information_schema' -e "select count(1) '连接数',db '数据库名' from processlist group by db;" 2>/dev/null

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:MySQL详细安装过程

下一篇:关于角色和权限控制数据表相关