When I try to set:
SET GLOBAL event_scheduler=ON;
or
SET GLOBAL event_scheduler = 1;
I get:
#1227 - Access denied; you need (at least one of) the SUPER privilege(s) for this operation
So, I try this:
GRANT SUPER ON *.*
TO 'username'@'localhost'
IDENTIFIED BY 'password';
and I get:
#1045 - Access denied for user 'username'@'localhost' (using password: YES)
How can I grant the SUPER priviledges?
Related questions:
How to set global event_scheduler=ON even if MySQL is restarted?