创建新用户
create user localuser identified by '666';
注:'localuser' 即为新用户的用户名
'666' 即为新用户的登录密码
为此新用户赋予操作某个数据库的权限
grant all privileges on students.* to 'localuser'@'%';
注:'students' 即为指定的数据库
'%' 即表示无论此用户以哪个IP操作都可以。
刷新数据库使刚才的操作生效
flush privileges;