1、设置用户名:
create user 用户名 identified by '密码';
2、授权所有权限:
grant all on 数据库.* to '用户名'@'%';
3、刷新生效:
flush privileges;