mysql数据库开启远程访问权限,提示无法给用户授权You are not allowed...

mysql数据库开启远程访问权限,提示无法给用户授权You are not allowed...


问题及解决

(1)首先执行sql语句

grant all privileges on *.* to 'root'@'%';

如果出现报错信息(无法给用户授权):
"You are not allowed to create a user with GRANT"
原因:出现这个问题说明你的数据是8.0以上的。mysql8.0以前的版本可以使用grant在授权的时候隐式的创建用户,8.0以后已经不支持,所以必须先创建用户,然后再授权
(2)执行sql:

CREATE USER 'root'@'%' IDENTIFIED BY '123456';

(3)重新执行(1)里面的sql语句
(4)此时你可以远程使用ip地址、账号root和密码123456连接测试
如果出现报错信息:

"plugin caching_sha2_password could not be loaded"
尝试修改密码加密插件,执行sql:

alter user 'root'@'%' identified with  mysql_native_password by '123456';
  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
MySQL 8.0中,如果要开启远程访问,并且出现"You are not allowed to create a user with GRANT"错误,可以按照以下步骤进行操作: 1. 首先,通过修改root用户的host字段来允许远程访问。使用以下命令: ``` MySQL [mysql]> update user set host = '%' where user = 'root' and host='localhost'; ``` 2. 接下来,为root用户设置密码,并使用mysql_native_password身份验证插件。使用以下命令: ``` MySQL [mysql]> ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '密码'; ``` 这样,你就成功开启MySQL 8.0的远程访问权限,并解决了"You are not allowed to create a user with GRANT"错误。请确保将'密码'替换为你想要设置的实际密码。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [MySql8.0开启远程root用户访问,解决You are not allowed to create a user with GRANT问题](https://blog.csdn.net/daobaqin/article/details/122094823)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* *3* [mysql 8 设置允许远程连接 You are not allowed to create a user with GRANT](https://blog.csdn.net/m0_67392811/article/details/123672458)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值