Mairadb 最大连接数、当前连接数 查询

目录

[查询数据库 最大连接数](#查询数据库 最大连接数)

查询当前连接总数


环境 Mariadb 10.11.6

跳转mysql数据库:

查询数据库 最大连接数

show variables like 'max_connections';

注意; 这个版本不能使用 : show variables like '%max_connections%'; 会报错 ,如图所示:

他不认识 这个 %max_connections%

MariaDB [mysql]> show variables like '%max_connections%';

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ''%max_connections%'' at line 1

可以看到目前最大连接数是1000.

查询当前连接总数

show status like 'Threads_connected';

通过查询**information_schema 中的processlist 数量**也能获取当前连接数:

通过show processlist可以 查看 连接详情:

相关推荐
天堂的恶魔9461 小时前
MySQL —— 在CentOS9下安装MySQL
数据库·mysql
多喝清晨的粥3 小时前
Mac MySQL 8.0.30的安装(保姆级教程)
数据库·mysql·macos
遇见你真好。3 小时前
SQL统计数据之总结
mysql
Smile丶凉轩3 小时前
MySQL使用C语言连接
c语言·mysql·adb
Rinai_R3 小时前
MySQL学习记录1【DQL和DCL】
数据库·笔记·学习·mysql
难以触及的高度3 小时前
linux下MySQL的数据存放
linux·运维·mysql
Linux运维老纪3 小时前
MySQL常用命令之汇总(Summary of Commonly Used Commands in MySQL)
服务器·数据库·计算机网络·mysql·云计算·运维开发
厦0044 小时前
【MySQL】MVCC详解, 图文并茂简单易懂
数据库·sql·mysql·mvcc·并发控制·undo日志
花生的酱5 小时前
MySQL主从复制
数据库·mysql
代码中の快捷键5 小时前
MySQL 中的Buffer Pool
数据库·mysql