首先关闭mysql服务,确保mysql没有运行的状态.
进入mysql/bin目录:
$ mysqld --skip-grant-tables
保留当前窗口,新开窗口依次执行以下命令:
$ mysql
$ use mysql;
// EVENT可换成相对于的权限,这里举栗子
// 同样root@localhost用户也是举栗子用
GRANT EVENT ON *.* TO root@localhost;
// 如果执行上面那句后报错:ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
// 可以先执行这句再执行上一句,至于为啥?我又不懂mysql,我只是代码搬运工
flush privileges;
// 然后就成功啦啦啦
Query OK, 0 rows affected (0.00 sec)
权限已加上,退出mysqld进程,开启mysql服务即可.