- Linux下安装MySQL见文章:https://blog.csdn.net/qq_41453285/article/details/102638547
一、问题
- 当我们安装MySQL客户端的时候,正常会让输入root管理员的密码,但是有的人安装的时候不会提示,那么就不知道如何使用账号和密码登录MySQL了
sudo apt-get install mysql-client
二、解决办法
- MySQL会默认给我们分配账户和密码
- 第一步:查看下面的配置文件,系统会在这里给我们分配账户和密码
vim /etc/mysql/debian.cnf
- 第二步:使用上面的账户和密码登录MySQL
- 第三步:执行下面的几步命令,更改root用户的密码
-
update mysql.user
set authentication_string=password(
'new password') where user=
'root'
and Host =
'localhost';
-
update user
set plugin=
"mysql_native_password";
-
-
flush privileges;
-
quit;
- 第四步:经过上面的修改就可以以root用户登陆了,密码就是你上面设置的"new password"
转载:https://blog.csdn.net/qq_41453285/article/details/103601554
查看评论