mysql用户管理

mysql用户管理

首先要声明一下:一般情况下,修改MySQL密码,授权,是需要有mysql里的root权限的。
1.新建用户
    mysql> insert into mysql.user(Host,User,Password) values("localhost","lee",password("1234"));

    这样就创建了一个名为:lee    密码为:1234 的用户。

    刷新一下系统权限表
    mysql>flush privileges;

2.为用户授权
   授权lee用户拥有test数据库的所有权限。
   grant all privileges on test.* to lee@localhost identified by '1234';
   mysql>flush privileges;

3.删除用户
  mysql>DELETE FROM user WHERE User="phplamp" and Host="localhost";
  mysql>flush privileges;

4.修改指定用户密码
   mysql>update mysql.user set password=password('新密码') where User="phplamp" and Host="localhost";
   mysql>flush privileges;

你可能感兴趣的:(mysql用户管理)