MySql 错误(UBUNTU):MySQL 服务器正在使用 --skip-grant-tables 选项运行,因此无法执行此语句

MySql 错误(UBUNTU):MySQL 服务器正在使用 --skip-grant-tables 选项运行,因此无法执行此语句

嗨,当我输入:授予所有特权TO 'yourusername'@'localhost' IDENTIFIED BY 'yourpassword' WITH GRANT OPTION; 我得到:MySQL 服务器正在使用 --skip-grant-tables 选项运行,因此无法执行此语句。我应该怎么做才能关闭 skip-grant-tables 选项?谢谢。

答案1

检查 mysql 配置/etc/mysql/或 中的运行脚本/etc/init.d/


编辑:
试试这个:GRANT ALL,GRANT OPTION ON至用户@localhost;

http://dev.mysql.com/doc/refman/5.1/en/grant.html

相关内容