mysql添加用户并指定ip和数据库
//添加用户 % 表示ip任意
create user 'username'@'%';
CREATE USER 'user1'@'%' IDENTIFIED BY '07fa533360d9';
//修改用户密码
update mysql.user set password=password('新密码') where user='username';
//mysql 5.7
update mysql.user set authentication_string=password('test') where user='test';
//添加权限
grant all privileges on 想授权的数据库.* to 'username'@'%';
grant all privileges on *.* to test@localhost;//授予所有权限
//强制刷新内存授权表
flush privileges;
网友评论