MySQL用户远程访问授权
Posted xiaobaidonghui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL用户远程访问授权相关的知识,希望对你有一定的参考价值。
序
经常会出现数据库搭建在云端的ECS上,需要在本地IDE中进行开发和调试,记录一下mysql中的相关操作。
核心
- SSH 连接到服务器。
- 使用
root
用户登入MySQL。 - 对名为
mysql
的数据库进行操作,创建用户与用户权限。
[root@iZ28lvy05nsZ ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \\g.
mysql> use mysql
Database changed
mysql> create user 'test2020'@'%' identified by 'd029DB652b8';
Query OK, 0 rows affected (0.00 sec)
mysql> grant all privileges on db2020.* to "test2020"@'%';
Query OK, 0 rows affected (0.00 sec)
扩展
- 关于用户的操作
create user 'username'@'IP' identified by 'password';
-- 单IP
create user 'username'@'192.168.1.100' identified by 'password';
-- IP段
create user 'username'@'192.168.1.%' identified by 'password';
-- 所有IP
create user 'username'@'%' identified by 'password';
- 关于权限的操作
-- 查看权限
show grants for 'username'@'IP'
-- 授权
grant 权限 on 数据库.表名 to "用户名"@'IP';
-- 授权 test2020 用户仅对db2020.code表有查询、插入和更新的操作
grant select ,insert,update on db2020.code to "test2020"@'%';
-- 授权 test2020 用户对db2020下所有表有所有权限的操作
grant all privileges on db2020.* to "test2020"@'%';
-- 授权 test2020 用户对所有库所有表有所有权限的操作
grant all privileges on *.* to "test2020"@'%';
-- 取消授权
revoke all privileges on *.* from 'test2020'@'%';
以上是关于MySQL用户远程访问授权的主要内容,如果未能解决你的问题,请参考以下文章