Mysql登录出错 user root@localhost(using password:NO)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql登录出错 user root@localhost(using password:NO)相关的知识,希望对你有一定的参考价值。

环境:redhat 5.7 安装了mysql 5.0
安装完mysql之后启动成功,但是使用mysql -uroot -p登录是,密码错误,确定没有设置过密码
出错提示:Access denied for user ‘root‘@‘localhost‘ (using password : No)
解决办法如下:

1.先关闭mysql服务
xiaopeng# /etc/init.d/mysqld stop
2.输入操作命令
xiaopeng# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
3.连接mysql
xiaopeng# mysql -uroot mysql
mysql> update user set Password=PASSWORD(‘newpassword‘) where USER=‘root‘;
mysql> flush PRIVILEGES;
mysql> quit
4.重启mysql服务
xiaopeng# /etc/init.d/mysqld restart
xiaopeng# mysql -uroot -p
Enter password:<newpassword>

以上是关于Mysql登录出错 user root@localhost(using password:NO)的主要内容,如果未能解决你的问题,请参考以下文章

django+MySQL

MySQL开启远程连接

mysql 修改root密码出错了 use mysql update user set

navicat for mysql cant connect to server 10038 远程连接出错

mac下,mysql5.7.18连接出错,错误信息为:Access denied for user 'root'@'localhost' (using password

Mysql 5.7 远程连接出错