MySQL密码相关操作
MySQL密码忘记了,操作步骤:
1、service mysqld stop
2、vim /etc/my.cnf #编辑MySQL配置文件,找到[mysqld],在下面添加一行skip-grant-tables
3、mysql -u root -p直接进入MySQL控制台
4、update mysql.user set password=password(‘MySQL新密码‘) where User="root" and Host="localhost";
flush privileges; #刷新系统授权表
grant all on *.* to ‘root‘@‘localhost‘ identified by ‘MySQL新密码‘ with grant option;
5、取消/etc/my.cnf中的siop-grant-tables
service mysqld stop
vi /etc/my.cnf
删除skip-grant-tables行
保存退出
6、service mysqld start
为mysql添加用户:
insert into mysql.user (host,user,password) values (‘localhost‘,‘cacti‘,password (‘cacti123‘));
flush privileges;
更改MySQLroot用户的密码:
mysql> update user set password=password(”xxxxxxxxxx″) where user=‘root’;
mysql> flush privileges; //刷新数据库
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。