老男孩教育每日一题-第106天-MySQL如何授权用户admin:password远程访问权限

解答:

假定内网网段172.16.1.0,用户admin,密码password,数据库oldboy。

只创建用户:

create user 'admin'@'172.16.1.%' identified by 'password';

创建用户并授权数据库权限,这种方式也是工作中最常用的:

grant all privileges on oldboy.* to  'admin'@'172.16.1.%' identified by 'password';

备注

今天是每日一题陪伴大家的第106天期待你的进步

对于题目和答案的任何疑问,请在博客评论区留言
往期题目索引

http://lidao.blog.51cto.com/3388056/1914205


本文转自 李导 51CTO博客,原文链接:http://blog.51cto.com/lidao/1953294


上一篇:ios PNG Crush error (PNG图片错误)


下一篇:如何查看mysql的用户及授权