linux/centos下忘记mysql密码
1. 编辑my.cnf文件,[mysqld] 下添加一行 skip-grant-tables
vim /etc/my.cnf
2. 重启mysql
service mysqld restart
3. 登录mysql,不用输密码
mysql -uroot -p
4. 修改root用户登录密码
mysql> use mysql; mysql> update user set authentication_string=password('123456') where user='root';
5. 删除第一步中添加的 skip-grant-tables
6. 重启mysql
service mysqld restart
修改密码完成
相关推荐
lpfvip00 2020-10-07
CoderToy 2020-11-16
emmm00 2020-11-17
王艺强 2020-11-17
ribavnu 2020-11-16
bianruifeng 2020-11-16
wangshuangbao 2020-11-13
苏康申 2020-11-13
vivenwan 2020-11-13
moyekongling 2020-11-13
云中舞步 2020-11-12
要啥自行车一把梭 2020-11-12
aydh 2020-11-12
kuwoyinlehe 2020-11-12
minerk 2020-11-12
vitasfly 2020-11-12
jazywoo在路上 2020-11-11
敏敏张 2020-11-11