安装过程中未提示配置信息
首先查看初始密码:
sudo vim /etc/mysql/debian.cnf
找到文件中password字段即为初始密码
例如:
password = GHsacqwdq1356465
用此密码登录mysql:
mysql -u debian-sys-maint -p GHsacqwdq1356465
登录成功后更新密码:
1.use mysql; 2.update user set authentication_string=PASSWORD("自定义密码") where user=‘root‘; 3.update user set plugin="mysql_native_password"; 4.flush privileges; 5.quit;
然后重启mysql
/etc/init.d/mysql restart;
新密码登录mysql
mysql -u root -p 密码;
原文地址:https://www.cnblogs.com/HonkerYblogs/p/10353322.html
时间: 2024-10-01 03:03:07