mysql创建用户

use mysql;
create user 'usrabc'@'%' identified by 'usrabc'; // %表示任何一个ip都可以登陆

grant all privileges on *.* to root@'%' identified by '你为root设置好的密码';

flush privileges;

 

posted @ 2019-04-14 23:42  泥土里的绽放  阅读(110)  评论(0编辑  收藏  举报