mysql查询、修改最大连接数的指令
程序员文章站
2022-06-14 09:47:46
show variables like '%max_connections%'; --查看最大连接数
set global max_connections=1000; --设置最大连...
show variables like '%max_connections%'; --查看最大连接数
set global max_connections=1000; --设置最大连接数为1000
上一篇: Django 注意知识点(一)
下一篇: js 设计模式——单例模式