安装 mysql-server 后,使用sudo apt install mysql-server
并输入 登录mysql
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'very_strong_password';
。之后我退出了。现在,当我尝试通过输入 登录 mysql 时,mysql
提示 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 我已经尝试过了
sudo mysqld_safe --skip-grant-tables &
像命令一样,什么都没改变。它在我的本地计算机上,我正在使用 Ubuntu 20.04 我也尝试删除 mysql,但它也没有改变任何东西 我如何登录我的 mysql 服务器。