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

重置mysql密码

时间:2016-05-18 22:10:24      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:mysql

重置mysql密码:

mysqladmin -uroot password ‘123‘ 增加用户

在配置文件增加:vim /etc/my.cnf

skip-grant

重启mysql:/etc/init.d/mysqld restart

use mysql

update user set password=password(‘新密码‘) where user=‘root‘

select * from user where user=‘root‘\G;



创建用户和密码

mysql -uroot -e "grant all on *.* to ‘zabbix‘@‘localhost‘ identified by ‘zabbix‘"; 


重置mysql密码

标签:mysql

原文地址:http://mengbo2006214.blog.51cto.com/6687714/1774828

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