首页 > 数据库技术 > 详细

Mysql创建用户并授权远程访问

时间:2021-04-01 23:08:49      阅读:27      评论:0      收藏:0      [点我收藏+]

进入控制台,登录mysql:mysql -u root -q  ,输入密码后,进入mysql命令行

创建数据库:create database abc; //以创建abc为例

创建用户:create user user01@‘localhost‘ identified by ‘password‘;    // 本地访问

                  create user user02@‘%‘ identified by ‘password‘;   // 远程访问
授权,给user02用户 赋予 abc 库所有操作DML  DDL:grant all privileges on abc.* to user02;

如果只开通所有库 查询权限,命令为: grant select on *.* to ‘user02‘@‘%‘ identified by ‘anotherpassword‘;

 

Mysql创建用户并授权远程访问

原文:https://www.cnblogs.com/jimmyshan-study/p/14608296.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!