码迷,mamicode.com
首页 > 数据库 > 详细

mysql5.7 修改root密码

时间:2015-12-01 13:00:14      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:mysql5.7   root   


1.编辑MySQL配置文件(跳过验证登陆) #编辑文件,找到[mysqld],在下面添加一行skip-grant-tables

  vi /etc/my.cnf

  [mysqld]

  skip-grant-tables

  :wq! #保存退出

2.重启服务

 #service mysql restart


(-my_print_defaults: [Warning] World-writable config file ‘/etc/my.cnf‘ is ignored.

Starting MySQL

-chmod 644 /etc/my.cnf)


3.进入mysql,因为之前已经跳过输入密码登陆,直接回车就可以进入

 #mysql -uroot -p  

4.修改密码,这里跟之前的改密码的字段不一样,

 >update mysql.user set authentication_string=password(‘newpass‘) where user=‘root‘;

 >flush privileges

 >quit

5.将/etc/my.cnf文件 skip-grant-tables注释掉,重启服务

 #service mysql resart

6.使用 mysql -uroot -p 输入密码 就可以进了


mysql5.7 修改root密码

标签:mysql5.7   root   

原文地址:http://dahui09.blog.51cto.com/10693267/1718431

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!