How to grant remote access permissions to mysql server for user?(如何为用户授予对mysql服务器的远程访问权限?)
问题描述
如果我在我的 mysql 数据库中执行 SHOW GRANTS
我得到
If I do SHOW GRANTS
in my mysql database I get
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost'
IDENTIFIED BY PASSWORD 'some_characters'
WITH GRANT OPTION
如果我没记错的话,root@localhost
表示用户root
只能从localhost
访问服务器.我如何告诉 MySQL 授予 root
从其他机器(在同一网络中)访问这个 mysql 服务器的权限?
If I am not mistaken, root@localhost
means that user root
can access the server only from localhost
. How do I tell MySQL to grant root
the permission to access this mysql server from every other machine (in the same network), too?
推荐答案
这会在 *.example.com
中的任何机器上使用相同的密码授予 root 访问权限:
This grants root access with the same password from any machine in *.example.com
:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%.example.com'
IDENTIFIED BY 'some_characters'
WITH GRANT OPTION;
FLUSH PRIVILEGES;
如果名称解析不起作用,您还可以通过 IP 或子网授予访问权限:
If name resolution is not going to work, you may also grant access by IP or subnet:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.%'
IDENTIFIED BY 'some_characters'
WITH GRANT OPTION;
FLUSH PRIVILEGES;
MySQL GRANT
语法文档.一个>
MySQL GRANT
syntax docs.
这篇关于如何为用户授予对mysql服务器的远程访问权限?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何为用户授予对mysql服务器的远程访问权限?


- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- SQL 临时表问题 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01