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可以 查看 连接详情:

相关推荐
程序猿进阶1 小时前
Otter 安装流程
java·数据库·后端·mysql·数据同步·db·otter
sevevty-seven2 小时前
详细讲解MySQL中的默认索引(B+树)
数据库·b树·mysql
蓝天扶光2 小时前
MySQL事务知识点梳理
数据库·mysql
枫林残忆1683 小时前
第02章_MySQL环境搭建(基础)
数据库·mysql
年薪丰厚3 小时前
利用zabbix自定义脚本监控MySQL基础状态
mysql·adb·zabbix
樱木...3 小时前
MySQL Crash 故障记录:Failing assertion: index->table->stat_initialized
数据库·mysql
做人求其滴3 小时前
如何多人在同一个局域网下连接Mysql数据库?怎么将 MySQL 数据库共享给他人?保姆级教程idea,Navicat连接
数据库·学习·mysql·intellij-idea·idea
Ljw...4 小时前
用户管理(MySQL)
数据库·mysql·用户管理
东阳马生架构11 小时前
MySQL底层概述—1.InnoDB内存结构
java·数据库·mysql