第一步:用帐号登录MysqL
[root@CentOs5 ~]# MysqL -u root或 # MysqL -uroot -p
第二步:改变用户数据库
MysqL> use MysqLReading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changed
第三步:修改密码,记得密码要用password()函数进行加密,一定不要忘记!!!
MysqL> update user set password=password('123456') where user='root';query OK,1 row affected (0.04 sec)Rows matched: 1 Changed: 1 Warnings: 0
第四步:刷新权限表
MysqL> flush privileges;query OK,0 rows affected (0.00 sec)
第五步:退出MysqL
MysqL> quitBye
第六步:对MysqL进行重启
[root@CentOs5 ~]# service MysqL restart;
总结 以上是内存溢出为你收集整理的CentOS 修改mysql root密码的简单示例全部内容,希望文章能够帮你解决CentOS 修改mysql root密码的简单示例所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)