自从mysql5.7版本开始不支持在安装时手动设置密码,所以要在安装mysql后手动设置root的用户的密码和密码登录。
查找数据库root原始密码:
sudo cat /etc/mysql/debian.cnf
登录:
mysql -u debian-sys-maint -p
use mysql;
update mysql.user set authentication_string =password('admin123') where user='root' and Host='localhost';
update user set plugin='mysql_native_password' where User='root';
flush privileges;
quit;
重启mysql
sudo systemctl restart mysql