MySQL数据库权限设置

  1. 创建用户test,密码为test
  • CREATE USER test IDENTIFIED BY 'test';
  1. 设置权限
  • 语句格式:grant select on 数据库.* to 用户名@登录主机 identified by "密码" ;
  • 例如:
    • 让他可以在任何主机上登录,并对所有数据库有查询、插入、修改、删除的权限。首先用以root用户连入mysql,然后键入以下命令:
      grant select,insert,update,delete on *.* to test@"%" Identified by "test";
    • 若只可以在localhost上登录,并可以对数据库mydb进行 查询、插入、修改、删除的操作(localhost指本地主机,即mysql数据库所在的那台主机),这样用户即使知道test的密码,他也无法从 internet上直接访问数据库,只能通过MYSQL主机上的web页来访问
      grant select,insert,update,delete on mydb.* to test@localhost identified by "test";
    • 如果你不想test有密码,可以打一个命令将密码消掉
      grant select,insert,update,delete on mydb.* to test@localhost identified by "";
    • 指定用户拥有创建表的权限
      grant select,insert,update,delete,create,drop on mydb.* to test@localhost identified by "test";
  1. 刷新数据库flush privileges;

  2. 查看用户信息select host,user from mysql.user;

你可能感兴趣的:(MySQL数据库权限设置)