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

CentOS 修改Mysql的root密码

时间:2014-08-31 21:13:31      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   文件   art   

1、知道密码

  第一次登陆(无密码)

mysqladmin -u root password NEWPASSWORD 

  修改过密码

mysqladmin -u root -p oldpassword password newpassword

2、忘记密码

  编辑MySQL配置文件my.cnf

vi /etc/my.cnf 

  #编辑文件,找到[mysqld],在下面添加一行skip-grant-tables

[mysqld]
skip-grant-tables

  重启服务

service mysqld restart

  进入MySQL控制台修改密码

mysql -uroot -p
update mysql.user set password=password(123123) where User="root" and Host="localhost";
flush privileges; #刷新系统授权表

  取消/etc/my.cnf中的skip-grant-tables并重启mysql

3、开启远程访问权限

  进入mysql控制台

grant all privileges on *.* to root@192.168.0.1 identified by password with grant option;
flush privileges; 
exit

  上面的是开启的IP 192.168.0.1的,如要开启所有的,用%代替IP

##取消授权等操作 查看

CentOS 修改Mysql的root密码

标签:style   blog   http   color   os   io   ar   文件   art   

原文地址:http://www.cnblogs.com/tswcypy/p/3948087.html

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