摘要:
1, 查看MySQL服务器配置信息 mysql> show variables; 2, 查看MySQL服务器运行的各种状态值 mysql> show global status; 3, 慢查询 : mysql> show variables like 'slow%'; + + + | Variabl 阅读全文
摘要:
MySQL session相关命令 查看MySQL最大连接数 show variables like 'max_connections'; 查看MySQL当前连接数 show status like 'Threads_connected'; 查看MySQL当前进程状态 show processlis 阅读全文
摘要:
首先,关闭实例 其次,创建一个sql文件 写上密码修改语句 # vim /etc/mysql/init.sql alter user 'root'@'localhost' identified by '123456'; 最后,使用--init-file参数,启动实例 mysqld_safe --de 阅读全文