mysql新建并授权用户

//登录MYSQL 
@>mysql -u root -p
@>密码

授权

grant   all   privileges   on   *.*   to   root@"% "   identified   by   '123456'   with   grant   option;   

mysql >flush privileges;

root是登陆用户

%是所有都可以登陆,也可以写成ip地址

123456是登陆密码

你可能感兴趣的:(数据库,mysql,授权,休闲,新建用户)