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

centos mysql 修改mysql用户密码

时间:2017-06-09 11:16:22      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:log   com   res   etc   tar   image   ima   centos6.5   art   

查看服务器版本:

cat /etc/redhat-release 

技术分享

查看mysql 版本:

技术分享

 

mysql -u root -p

use mysql;

###mysql 5.7以上。。

update user SET authentication_string = PASSWORD(‘newpassword‘) WHERE user = ‘root‘;

###mysql 5.7一下旧版本

update user SET password = PASSWORD(‘newpassword‘) WHERE user = ‘root‘;

flush privileges;

exit;

 

可以重启下mysql服务

centos6.5  :   mysql mysqld restart

centos7 : systemctl  restart  mysqld

 

centos mysql 修改mysql用户密码

标签:log   com   res   etc   tar   image   ima   centos6.5   art   

原文地址:http://www.cnblogs.com/hanlong/p/6970826.html

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