Grant Snider - The shape of ideas_ an illustrated exploration of creativity Grant Snider - The shape of ideas_ an illustrated exploration of creativity
Grant Snider - The shape of ideas_ an illustrated exploration of creativity (2017, Abrams ComicArts)(1) Grant Snider - The shape of ideas_ an illustrated exploration of creativity (2017, Abrams ComicArts)(1)
今天在mysql中新建数据库提示The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement,原来是数据中配置的--skip-grant-tables,这样安全就降低了,这个一般当忘记root密码的时候需要这样操作
The MySQL server is running with the –skip-grant-tables option so it cannot execute this statement
意思貌似MYSQL还运行在 –skip-grant-tables模式,如何让他回到原来的模式
第一种方法:原来在mysql.ini文件中配置了skip-grant-tables,前面加个#注释掉就可以了
修改mysql的配置文件,把skip-grant-tables去掉后,重启mysql
第二种:
MySQL 赋予用户权限命令的简单格式可概括为:
grant 权限 on 数据库对象 to 用户
一、grant 普通数据用户,查询、插入、更新、删除 数据库中所有表数据的权利
grant select on testdb.* to common_user'%'
grant insert on testdb.* to common_user'%'
grant update on testdb.* to common_user'%'
grant delete on testdb.* to c
本文实例,运行于 MySQL 5.0 及以上版本。
MySQL 赋予用户权限命令的简单格式可概括为:
grant 权限 on 数据库对象 to 用户
一、grant 普通数据用户,查询、插入、更新、删除 数据库中所有表数据的权利。
代码如下:grant select on testdb.* to common_user’%’grant insert on testdb.* to common_user’%’grant update on testdb.* to common_user’%