标签:有关 data lib localhost csdn 更改 文件 auth 重新安装
新安装Ubuntu20服务版,
安装mysql8 后
使用以下语句更改密码
update mysql.user set authentication_string=‘password‘ where user=‘root‘;
出现show databases,不能使用。
最后无法只能重新安装mysql
_____________________
查看MySQL的依赖项:dpkg --list|grep mysql 卸载: sudo apt-get remove mysql-common 卸载:sudo apt-get autoremove --purge mysql-server 清除残留数据:dpkg -l|grep ^rc|awk ‘{print$2}‘|sudo xargs dpkg -P 再次查看MySQL的剩余依赖项:dpkg --list|grep mysql 继续删除剩余依赖项,如:sudo apt-get autoremove --purge mysql-apt-config 至此已经没有了MySQL的依赖项 再删除目录 sudo rm /var/lib/mysql/ -R # 删除数据库目录 sudo rm /etc/mysql/ -R #删除启动脚本、配置文件等 sudo apt-get autoremove mysql* --purge # 卸载mysql所有文件 sudo apt-get remove apparmor # 这个apparmor是在装mysql-server时装上的,和安全有关
_________________________________
重新安装后,使用
ALTER user ‘root‘@‘localhost‘ IDENTIFIED BY ‘root‘;
更改密码。show databases,正常
ERROR 1410 (42000): You are not allowed to create a user with GRANT
查询后解决:
update user set host=‘%‘ where user=‘root‘;
原文链接:https://blog.csdn.net/qq_34680444/article/details/86238516
解决mysql8报错:ERROR 1410 (42000): You are not allowed to create a user with GRANT
标签:有关 data lib localhost csdn 更改 文件 auth 重新安装
原文地址:https://www.cnblogs.com/uge3/p/13166551.html