摘要:
显示最大连接数 show variables like "max_connections"; 设置最大连接数: set GLOBAL max_connections=1000; 查看mysql在关闭一个非交互的连接之前要等待的秒数,默认是28800s 也就是一个链接sleep八个小时后才会被mysq 阅读全文
摘要:
查询用户加密方式: select user,plugin from user where user='root'; 修改用户加密方式改为mysql_native_password。 alter user 'root'@'localhost' identified with mysql_native_ 阅读全文