您的位置:首页 > 数据库 > MySQL

mysql问题:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

2014-06-18 18:17 621 查看
First things first. Log in as root and stop the mysql daemon.


sudo /etc/init.d/mysql stop


Now lets start up the mysql daemon and skip the grant tables which store the passwords.

sudo mysqld_safe --skip-grant-tables&

(press Ctrl+C now to disown the process and start typing commands again)

You should see mysqld start up successfully. If not, well you have bigger issues. Now you should be able to connect to mysql without a password.

sudo mysql --user=root mysql

update user set Password=PASSWORD('new-password')

flush privileges

exit


Now kill your running mysqld then restart it normally.

sudo killall mysqld_safe&

(press Ctrl+C now to disown the process and start typing commands again)
/etc/init.d/mysql start

You should be good to go. Try not to forget your password again.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  mysql
相关文章推荐