摘要:
##mysql 重置root密码 ####Mysql 8 版本 ###1.1 修改配置文件 //我这里是mysql 8.0.27版本 vim /etc/my.cnf //添加跳过权限列表 skip-grant-tables //重启mysql systemctl restart mysqld ### 阅读全文
摘要:
##mysql 慢查询 ###1.1 检查当前mysql是否开启慢查询 //ON是开启状态 OFF是关闭状态 show variables like '%slow_query_log%' ###2.1 开启慢查询 慢日志功能默认情况是关闭的,只当需要调优的时候才开启,因为开启或多或少会影响性能。刚说 阅读全文