1、初始安装修改root密码
mysqladmin -uroot password 'newpassword';
2、新建用户
//创建了一个名为:jeecn 密码为:jeecn 的用户。 mysql> insert into mysql.user(Host,User,Password) values(‘localhost’,'jeecn’,password(‘jeecn’));
//或者
//create user jeecn;
//update user set Password = PASSWORD("jeecn") where user='jeecn'; //刷新系统权限表 mysql>flush privileges;
3、用户授权
mysql>grant all privileges on testdb.* to jeecn@localhost identified by 'jeecn'; //刷新系统权限表 mysql>flush privileges
//grant 权限1,权限2,…权限n on 数据库名称.表名称 to 用户名@用户地址 identified by ‘连接口令’; //权限n代表select,insert,update,delete,create,drop,index,alter,grant,references,reload,shutdown,process,file等14个权限
4、撤销权限revoke
revoke 跟 grant 的语法差不多,只需要把关键字 “to” 换成 “from” 即可
revoke all on *.* from dba@localhost;
5、查看权限
show grants;
参考:
[1] 网名还没想好.MYSQL添加新用户 MYSQL为用户创建数据库 MYSQL为新用户分配权限[2014-10-20](2012-05-23).http://www.cnblogs.com/ymy124/archive/2012/05/23/2514196.html
[2] Yanfei90.MySQL中授权(grant)和撤销授权(revoke)[2014-10-21](2012-04-22).http://blog.csdn.net/andy_yf/article/details/7487519