步骤
- 设置mysql免密码登陆
编辑/etc/mysql/my.cnf文件,在最后加入以下设置
[mysqld]
skip-grant-tables=1
- 重启mysql
$ sudo service mysql stop
$ sudo service mysql strat
- 进入mysql,先修改验证方式,再改密码
$ mysql
//修改验证方式
mysql> USE mysql;
mysql> UPDATE user SET plugin='mysql_native_password' WHERE User='root';
//修改密码
mysql> update mysql.user set authentication_string=password('123qwe') where user='root' and Host = 'localhost';
//刷新权限
mysql> flush privileges;
//推出
musql> exit;
- 重启mysql服务 登陆mysql
$ mysql -uroot -p
参考
https://stackoverflow.com/questions/39281594/error-1698-28000-access-denied-for-user-rootlocalhost#
原文地址:https://www.cnblogs.com/ahmczsy/p/10489809.html
时间: 2024-10-16 19:27:23