Mysql数据库设置远程连接权限,执行grant all privileges on *.* to 'root'@'%' identified by '密码' with g
Mysql数据库设置远程连接权限,执行grant all privileges on *.* to 'root'@'%' identified by '密码' with grant optio报错
ERROR1558 (HY000): Column count ofmysql.user is wrong. Expected 43, found 42. Created with Mysql 50556, now running 50639. Please use mysql_upgrade to fix this error.
使用命令:mysql_upgrade -u[username] -p[passWord]
就可以解决。
使用mysql_upgrade
对数据库的数据表结构等升级时,数据库引擎MyISAM 会做检查、修复的动作,InnoDB 执行 mysql_upgrade 没有作用。
查找MySQL的安装目录找到mysql_upgrade :
然后进入到mysql再执行权限修改即可:grant all privileges on *.* to 'root'@'%' identified by 'root4XML004a' with grant option;
如:
grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘123456‘ with grant optio
原因: mysql的版本问题,这条语句适用于MySQL8.0之前
解决: mysql8.0及以上版本需要使用以下语句:
create user root@'%' identified by '123456';
grant all privileges on *.* to root@'%' with grant option;
到此这篇关于解决mysql数据库设置远程连接权限执行grant all privileges on *.* to 'root'@'%' identified by '密码' with grant optio报错的文章就介绍到这了,更多相关mysql远程连接权限内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!
--结束END--
本文标题: 解决mysql数据库设置远程连接权限执行grant all privileges on *.* to 'root'@'%' identified by &apo
本文链接: https://lsjlt.com/news/117053.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0