Mysql8.0开启远程访问

首先登陆mysql

mysql -u root -p ${your password}

use mysql;
select host, user, authentication_string, plugin from user;

在这里插入图片描述

#如果没有host=%的,说明没有启用远程登陆的账户
update user set host='%' where user='root';
#给远程账户授权
Grant all privileges on root.* to 'root'@'%';
#设置密码
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '${your password}';
#刷新权限
flush privileges;
exit;

这一顿操作下来就好了

Ps:请确认开启防火墙3306端口的访问权限

#查看端口
firewall-cmd --list-ports
#开放3306端口
firewall-cmd --zone=public --add-port=3306/tcp --permanent
#重启防火墙
firewall-cmd --reload
  • 1
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
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 ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值