mysql忘记密码
1.修改MySQL的配置文件(默认为/etc/my.cnf),在[mysqld]下添加一行skip-grant-tables
2.service mysqld restart后,即可直接用mysql进入
3.
mysql> update mysql.user set authentication_string=password(‘123qwe’) where user=‘root’ and Host = ‘localhost’;
mysql> flush privileges;
mysql> quit;
将/etc/my.cnf文件还原,重新启动mysql:service mysql restart,这个时候可以使用mysql -u root -p’123qwe’进入了
mysql>SET PASSWORD = PASSWORD(‘newpasswd’); 设置新密码
转载自:http://www.cppcns.com/shujuku/mysql/206143.html