博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
重置MySQL的root密码
阅读量:4881 次
发布时间:2019-06-11

本文共 332 字,大约阅读时间需要 1 分钟。

停掉mysql服务:

sudo /etc/init.d/mysqld stop

用安全模式启动mysql:

sudo mysqld_safe --skip-grant-tables &

然后就可以用root直接登录了:

mysql -uroot

然后根据你的需要自由调整User和Host就行了:

use mysql;update user set password=PASSWORD("mynewpassword") where User='root';flush privileges;quit

重启mysql:

service mysql restart

 

转载于:https://www.cnblogs.com/at0x7c00/p/8098195.html

你可能感兴趣的文章
Spring Cloud学习资料
查看>>
制作无广告启动盘
查看>>
python使用httplib2访问REST服务的例子
查看>>
经典代码(01)
查看>>
生成ico格式图标
查看>>
并查集hdu4424
查看>>
【异常】IOException parsing XML document from class path resource [xxx.xml]
查看>>
第五周作业
查看>>
COJ 2135 Day10-例1
查看>>
jdbc之分页查询
查看>>
PHP手动环境搭建之WAMP
查看>>
COJ 1003 WZJ的数据结构(三)ST表
查看>>
sbrk and coreleft
查看>>
树型DP
查看>>
怎么在ubuntu上使用pidgin登陆QQ
查看>>
思维的惰性
查看>>
2018-2019-2 网络对抗技术 20165115 Exp3 免杀原理与实践
查看>>
【Android】学习记录<1> -- 初识ffmpeg
查看>>
定位页面元素的位置
查看>>
关于IAsyncResult接口的CompletedSynchronously属性
查看>>