feat: 提交

master
old-tom 2 weeks ago
parent 86f1743fe7
commit 856eb00e1a

@ -0,0 +1,21 @@
1. 停止当前mysqld服务
`service mysql stop`
2. 用安全模式启动
`sudo mysqld_safe --skip-grant-tables--user=mysql&`
3. 无密码登陆
`mysql -u root`
4. 修改密码
```sql
FLUSH PRIVILEGES;
ALTER USER 'root'@'localhost' IDENTIFIED BY '密码';
EXIT;
```
5. 恢复正常mysql服务
```
sudo pkill mysqld
service mysql start
```
Loading…
Cancel
Save