阳光网驿-企业信息化交流平台【DTC零售连锁全渠道解决方案】

 找回密码
 注册

QQ登录

只需一步,快速开始

扫描二维码登录本站

手机号码,快捷登录

老司机
查看: 1620|回复: 0

[转帖] 向mysql添加新用户并分配权限

[复制链接]
  • TA的每日心情
    开心
    2021-8-30 00:00
  • 签到天数: 35 天

    [LV.5]常住居民I

    发表于 2008-4-26 15:33:03 | 显示全部楼层 |阅读模式
    bin>mysql -u root
    mysql> grant 权限1,权限2,…权限n on 数据库名称.表名称 to
    用户名@用户地址 identified by ‘连接口令’;

    权限1,权限2,…权限n代表
    select,insert,update,delete,create,drop,index,
    alter,grant,references,reload,shutdown,process,file等14个权限。
    当权限1,权限2,…权限n被all privileges或者all代替,表示赋予用户全部权限。
    当数据库名称.表名称被*.*代替,表示赋予用户操作服务器上所有数据库所有表的权限。
    用户地址可以是localhost,也可以是ip地址、机器名字、域名。
    也可以用’%'表示从任何地址连接。
    '连接口令'不能为空,否则创建失败。

    例如:
    mysql>grant select,insert,update,delete,create,drop
    on vtdc.employee to joe@127.0.0.1 identified by ‘123′;
    mysql>grant select,insert,update,delete,create,drop <br/>on vtdc.employee to joe@127.0.0.1 identified by ‘123′;<br/>
    给来自127.0.0.1的用户joe分配可对数据库vtdc的employee表进行
    select,insert,update,delete,create,drop等操作的权限,并设定口令为123。

    mysql>grant all privileges on vtdc.*
    to joe@127.0.0.1 identified by ‘123′;mysql>grant all privileges on vtdc.* <br/>to joe@127.0.0.1 identified by ‘123′;给来自127.0.0.1的用户
    joe分配可对数据库vtdc所有表进行所有操作的权限,并设定口令为123。

    mysql>grant all privileges on *.*
    to joe@127.0.0.1 identified by ‘123′;mysql>grant all privileges on *.* <br/>to joe@127.0.0.1 identified by ‘123′;
    给来自127.0.0.1的用户joe分配可对所有数据库的所有表进行所有操作的权限,并设定口令为123。

    mysql>grant all privileges on *.*
    to [email=joe@localhost]joe@localhost[/email] identified by ‘123′;mysql>grant all privileges on *.* <br/>to [email=joe@localhost]joe@localhost[/email] identified by ‘123′;
    给本机用户joe分配可对所有数据库的所有表进行所有操作的权限,并设定口令为123。
    本文来源于闪闪超的记事本 http://blog.qqss5.cn/ , 原文地址:http://blog.qqss5.cn/post/mysql_grant.html

    评分

    参与人数 1阳光币 +5 收起 理由
    qazwsxedc + 5 软件分享奖励

    查看全部评分

    楼主热帖
    启用邀请码注册,提高发帖质量,建设交流社区
    您需要登录后才可以回帖 登录 | 注册

    本版积分规则

    快速回复 返回顶部 返回列表