1、创建用户
CREATE USER 'test'@'%' IDENTIFIED BY '15ht46389012t'; #'%' - 所有情况都能访问;‘localhost’ - 本机才能访问;’192.168.1.2‘ - 指定 ip 才能访问
2、赋予权限
grant all privileges on 想授权的数据库.* to 'test'@'%';flush privileges;
all 可以替换为 select,delete,update,create,drop。
本文共 291 字,大约阅读时间需要 1 分钟。
CREATE USER 'test'@'%' IDENTIFIED BY '15ht46389012t'; #'%' - 所有情况都能访问;‘localhost’ - 本机才能访问;’192.168.1.2‘ - 指定 ip 才能访问
grant all privileges on 想授权的数据库.* to 'test'@'%';flush privileges;
all 可以替换为 select,delete,update,create,drop。
转载于:https://my.oschina.net/u/182501/blog/1858735