MySQL的常见问题

1.忘记MySQL密码

5.6版本 vim /etc/mysql/my.cnf
5.7版本 vim /etc/mysql/mysql.conf.d/mysqld.cnf
在[mysqld]下方的skip-external-locking下面添加一行:
skip-grant-tables
重启MySQL服务
service mysql restart
mysql
5.6版本 UPDATE mysql.user SET authentication_string=password('0000') WHERE User='root' AND Host ='localhost'; 5.7以上版本 mysql> alter user 'root'@'localhost' identified by 'youpassword';

2.MySQL死锁和解锁

查询进程
show processlist
杀死进程id(就是上面命令的id列)
kill id

 

posted @ 2020-07-22 15:52  NickCqila  阅读(101)  评论(0编辑  收藏  举报