使用以下方式可以无密码进入mysql:
- 以系统管理员权限进入mysql
sudo mysql -uroot
- 以debian用户的账号密码进入mysql
- 进入
/etc/mysql/debian.cnf
中找到账号(user)和密码(password) - 然后登陆到
mysql
mysql -u<user> -p<password>
- 进入
- 编辑
/etc/mysql/mysql.conf.d/mysqld.cnf
文件。- 在
[mysqld]
下方的skip-external-locking
下面添加一行:skip-grant-tables
- 重启
mysql
服务sudo service mysql restart
- 在
成功进入mysql后,在mysql的命令行中通过输入以下命令来将 root
用户的密码设置为 root
。
use mysql;
update mysql.user set authentication_string=password('root') where user='root' and Host ='localhost';
update user set plugin="mysql_native_password";
flush privileges;
最后重其服务就可以用我们刚刚设置的密码进行登陆了。(设置了 skip-grant-tables
参数的同学别忘记把这个参数删掉或在注释掉!!)