标签:sel 管理员 alter show drop 加密 引号 权限 管理员密码
创建wangsiyu用户,只能在localhost这个服务器登录,密码是wangsiyu123
create user ‘wangsiyu‘@‘localhost‘ identified by ‘wangsiyu123‘;
创建neha用户,可以在任意电脑登录,密码是nezha123
create user ‘nezha‘@‘%‘ identified by ‘nezha‘;
创建的用户都在mysql数据库的user表中,密码都经过了加密。
给wangsiyu用户分配tx数据库的所有表的创建表,修改表,插入,更新,查询权限。
grant create,alter,insert,update,select on tx.* to ‘wangsiyu‘@‘localhost‘;
给nezha分配所有权限,对tx数据库的所有表操作
grant all on tx.* to ‘nezha‘@‘%‘;
撤销nezha对tx数据库中所有表的操作权限
revoke all on tx.* from ‘nazhe‘@‘localhost‘;
查看wangsiyu的用户权限
show grants for ‘wangsiyu‘@‘localhost‘;
查看nezha的用户权限
show grants for ‘nezha‘@‘%‘;
删除wangsiyu
drop user ‘wangsiyu‘@‘localhost‘;
mysqladmin -uroot -p password 新密码
修改wangsiyu密码为123
set password for ‘wangsiyu‘@‘localhost‘ = password(‘123‘)
标签:sel 管理员 alter show drop 加密 引号 权限 管理员密码
原文地址:https://www.cnblogs.com/hellosiyu/p/12986477.html