1.新建用户
登录MYSQL
mysql -u root -p
创建用户
insert into mysql.user(Host,User,Password) values(‘localhost’,'jeecn’,password(‘jeecn’));
//刷新系统权限表
flush privileges;
这样就创建了一个名为:jeecn 密码为:jeecn 的用户。
2.为用户授权
登录MYSQL(有ROOT权限)。这里我们以ROOT身份登录,首先为用户创建一个数据库(jeecnDB)
mysql>create database jeecnDB;
授权jeecn用户拥有jeecn数据库的所有权限
grant all privileges on jeecnDB.* to jeecn@localhost identified by ‘jeecn’;
刷新系统权限表
mysql>flush privileges;
如果想指定部分权限给一用户,可以这样来写:
mysql>grant select,update on jeecnDB.* to jeecn@localhost identified by ‘jeecn’;
刷新系统权限表。
mysql>flush privileges;
常见SQL例子:
mysql>grant select,insert,update,delete,create,drop on vtdc.employee to jee@10.163.225.87 identified by ‘123′;
给来自10.163.225.87的用户jee分配可对数据库vtdc的employee表进行select,insert,update,delete,create,drop等操作的权限,并设定口令为123。
mysql>grant all privileges on vtdc.* to jee@10.10.10.87 identified by ‘123′;
给来自10.163.225.87的用户jee分配可对数据库vtdc所有表进行所有操作的权限,并设定口令为123。
mysql>grant all privileges on *.* to jee@10.10.10.87 identified by ‘123′;
给来自10.163.225.87的用户jee分配可对所有数据库的所有表进行所有操作的权限,并设定口令为123。
mysql>grant all privileges on *.* to jee@localhost identified by ‘123′;
给本机用户jee分配可对所有数据库的所有表进行所有操作的权限,并设定口令为123。
3.删除用户
mysql>DELETE FROM user WHERE User=”jeecn” and Host=”localhost”;
mysql>flush privileges;
删除用户的数据库
mysql>drop database jeecnDB;
4.修改指定用户密码
>mysql -u root -p #登录MySQL
update mysql.user set password=password(‘新密码’) where User=”jeecn” and Host=”localhost”;
flush privileges;
#刷新
quit;
#退出