MySQL5.7没有初始密码解决办法
程序员文章站
2022-04-15 21:22:32
[TOC] 1.开启跳过权限验证 2.重置密码 ......
目录
1.开启跳过权限验证
vi /etc/my.cnf [mysqld] skip-grant-tables /etc/init.d/mysqld restart
2.重置密码
use mysql; update user set authentication_string=password('123456') where user='root' and host='localhost'; flush privileges; /etc/init.d/mysqld restart vi /etc/my.cnf [mysqld] skip-grant-tables #delete /etc/init.d/mysqld restart alter user 'root'@'localhost' identified by '123456';
上一篇: shell脚本的条件测试与比较
下一篇: ASP.NET简单热词统计
推荐阅读
-
打印后台程序服务没有运行的解决办法
-
摄像头不能用 提示没有视频捕捉硬件的解决办法
-
Google谷歌浏览器不能用提示没有注册类的三种解决办法
-
登陆微信公共平台提示没有权限访问该页面请点击返回首页现象的解决办法
-
Windows 64 位 mysql 5.7以上版本包解压中没有data目录和my-default.ini及服务无法启动的快速解决办法(问题小结)
-
iis6网站属性没有asp.net选项卡的解决办法
-
为什么电脑会没有声音 电脑没有声音的解决办法
-
VS2019属性管理器没有Microsoft.Cpp.x64.user的解决办法
-
YY语音对话过程中话筒没有声音的解决办法
-
MySQL5.7 sql_mode=only_full_group_by的解决办法