MySQL 授权
--grant 操作 MySQL 表操作的所有权限
GRANT ALL ON db.* TO 'root'@'192.168.2.%' IDENTIFIED BY "root"
--grant 操作 MySQL 外键权限
grant references on root.* to 'root'@'192.168.2.%';
--grant 操作 MySQL 临时表权限
grant create temporary tables on root.* to 'root'@'192.168.2.%';
--grant 操作 MySQL 索引权限
grant index on root.* to 'root'@'192.168.2.%';
--grant 操作 MySQL 视图、查看视图源代码权限
grant create view on root.* to 'root'@'192.168.2.%';
grant show view on root.* to 'root'@'192.168.2.%';
--grant 操作 MySQL 存储过程、函数权限
grant create routine on root.* to 'root'@'192.168.2.%';
grant alter routine on root.* to 'root'@'192.168.2.%';
grant execute on root.* to 'root'@'192.168.2.%';
1、因为很少登录,评论基本没有回复,见凉!
2、如果转载我的文章,请写明出处,谢谢!
3、有些文章为转载,如果您发现侵权,请联系删除,但回复可能需要较长时间