创建用户 主机名中 ip表示只允许某个ip访问 ,%表示所有,localhost表示只允许本地访问
注意某个用户的信息中 用户名和主机名组成了一个用户,同一个用户名不同的主机名组成的是不同的用户
create user '用户名'@'主机名' identified by 'password';
例
create user 'username'@'%' identified by 'password';
赋予权限
grant all privileges on *.* to 'username'@'%' ;
grant select on *.* to 'username'@'%';
grant select on test.* to 'username'@'%';
grant select on test.table1 to 'username'@'%';
grant select,insert on test.table1 to 'username'@'%';
刷新权限 授权后必须flush privileges;否则无法立即生效。
flush privileges;
删除用户
drop user '用户名'@'主机名';
权限名称 对应user表中的列 权限范围 create create_priv 数据库、表或索引 drop drop_priv 数据库或表 grant option grant_priv 数据库、表、存储过程或函数 references references_priv 数据库或表 alter alter_priv 修改表 delete delete_priv 删除表 index index_priv 用索引查询表 insert insert_priv 插入表 select select_priv 查询表 update update_priv 更新表 create view create_view_priv 创建视图 show view show_view_priv 查看视图 alter routine alter_routine_priv 修改存储过程或存储函数 create routine create_routine_priv 创建存储过程或存储函数 execute routine execute_priv 执行存储过程或存储函数 file file_priv 加载服务器主机上的文件 create temporary tables create_tmp_table_priv 创建临时表 lock tables lock_tables_priv 锁定表 create user create_user_priv 创建用户 process process_priv 服务器管理 reload reload_priv 重新加载权限表 replication client repl_client_priv 服务器管理 replication slave repl_slave_priv 服务器管理 show databases show_db_priv 查看数据库 shutdown shutdown_priv 关闭服务器 super super_priv 超级权限
|