标签:strong cal log user inf 报错信息 err .com str
sudo apt-get update
sudo apt-get install mysql-server
这种情况没什么问题,通过已下命令登录MySQL
mysql -u root -p
这种情况可以尝试使用空密码进行登录
我在安装MySQL时遇到没有提示设置密码且空密码无效的情况,报错信息如下:
ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: NO)
Ubuntu在安装MySQL时会为用户创建一个debian-sys-maint用户我们可以通过这个用户来设置
sudo cat /etc/mysql/debian.cnf
mysql -u debian-sys-maint -p
注意:此时密码为刚刚查到的密码
现在我们已经登录到MySQL了
use mysql;
update mysql.user set authentication_string=password(‘你的密码‘) where user=‘root‘ and Host =‘localhost‘;
update user set plugin="mysql_native_password";
flush privileges;
quit;
OK! 问题解决了
参考原贴
Ubuntu18.04安装MySQL(未设置密码或忘记密码)
标签:strong cal log user inf 报错信息 err .com str
原文地址:https://www.cnblogs.com/WXGC-yang/p/10562203.html