MySQL中常用的命令有哪些?
- 内容介绍
- 文章标签
- 相关推荐
本文共计105个文字,预计阅读时间需要1分钟。
查看超时释放show variables where variable_name like 'timeout'查看链接数show processlist查看完整链接列表show full processlist查看最大连接数show variables like '%max_connections%'修改最大连接数set GLOBAL max_connections=20
查看超时释放
show variables where variable_name like '%timeout'查看链接数
show full processlist
查看最大连接数
show variables like '%max_connections%'修改最大连接数
set GLOBAL max_connections = 200;参考博客
[1]
本文共计105个文字,预计阅读时间需要1分钟。
查看超时释放show variables where variable_name like 'timeout'查看链接数show processlist查看完整链接列表show full processlist查看最大连接数show variables like '%max_connections%'修改最大连接数set GLOBAL max_connections=20
查看超时释放
show variables where variable_name like '%timeout'查看链接数
show full processlist
查看最大连接数
show variables like '%max_connections%'修改最大连接数
set GLOBAL max_connections = 200;参考博客
[1]

