添加用户访问权限
grant all on sonardb.* to sonar@'%' identified by '123456';
sonardb:数据库名称,也可以为‘*’代表所有数据库。
sonar:指定用户名。
%:代表所有远程机器,也可以指定远程机器IP地址。----------------------------------------------------------------
删除用户访问
delete from user where user='sss' and host='localhost' ;
sss:用户名称。
localhost:访问权限
----------------------------------------------------------------
flush privileges ;
更新权限表。
----------------------------------------------------------------
删除用户权限
revoke all on *.* from sss@localhost ;