修改增加用户密码这是mysql数据库管理中最基本的一个功能了,下面我来介绍修改用户密码并设置用户权限一些方法总结.
方法一:使用phpmyadmin,这是最简单的了,修改mysql库的user表,不过别忘了使用PASSWORD函数。
方法二:格式:mysqladmin -u用户名 -p旧密码 password 新密码
1、给root加个密码ab12.
首先在DOS下进入目录mysqlbin,然后键入以下命令:
mysqladmin -u root -password ab12
注:因为开始时root没有密码,所以-p旧密码一项就可以省略了.
2、再将root的密码改为djg345,代码如下:
mysqladmin -u root -p ab12 password djg345
下面的方法都在mysql提示符下使用,且必须有mysql的root权限.
方法三,代码如下:
- mysql>INSERTINTOmysql.user(Host,User,Password)VALUES(’%',’jeffrey’,PASSWORD(’biscuit’));
- mysql>FLUSHPRIVILEGES
确切地说这是在增加一个用户,用户名为jeffrey,密码为biscuit,注意要使用PASSWORD函数,然后还要使用FLUSH PRIVILEGES,上面只是创建用户了,下面我们还需要给用户权限了,这里介绍mysql 命令行的方法.
下面为您介绍的语句都是用于授予MySQL用户权限,这些语句可以授予数据库开发人员,创建表、索引、视图、存储过程、函数,等MySQL用户权限.
grant 创建、修改、删除 MySQL 数据表结构权限,代码如下:
- grantcreateontestdb.*todeveloper@'192.168.0.%';
- grantalterontestdb.*todeveloper@'192.168.0.%';
- grantdropontestdb.*todeveloper@'192.168.0.%';
grant 操作 MySQL 外键权限,代码如下:
grant references on testdb.* to developer@'192.168.0.%';
grant 操作 MySQL 临时表权限,代码如下:
grant create temporary tables on testdb.* to developer@'192.168.0.%';
grant 操作 MySQL 索引权限,代码如下:
grant index on testdb.* to developer@'192.168.0.%';
grant 操作 MySQL 视图、查看视图源代码权限,代码如下:
- grantcreateviewontestdb.*todeveloper@'192.168.0.%';
- grantshowviewontestdb.*todeveloper@'192.168.0.%';
grant 操作 MySQL 存储过程、函数权限,代码如下:
- grantcreateroutineontestdb.*todeveloper@'192.168.0.%';--now,canshowprocedurestatus
- grantalterroutineontestdb.*todeveloper@'192.168.0.%';--now,youcandropaprocedure--phpfensi.com
- grantexecuteontestdb.*todeveloper@'192.168.0.%';