linux下mysql新建用户

原文链接:http://jingyan.baidu.com/article/09ea3ede2ebf83c0aede39d9.html


1.登录mysql

#mysql -u root -p

2.新增用户

insert into mysql.user(Host,User,Password) values("localhost","xxx",password("***"));

注释:xxx为新建用户名,***为用户密码

3.执行该句后,还需要刷新权限表

flush privileges;

4.赋予用户权限

grant all on ttt.* to xxx@localhost identified by "***";

注视:ttt为表名,当然你也可以填* 为所有表

5.赋予权限,还需要再刷新权限表

flush privileges;

6.通过sql语句查询出新增结果

select user,host,password from mysql.user;


原文地址:https://www.cnblogs.com/kuyuyingzi/p/4266244.html