Alaa M. Jaddou
Alaa M. Jaddou

Reputation: 1189

MySQL events_schedule='ON' fails due to privileges

I’m trying to turn events on. If I execute SET GLOBAL event_schedule="ON" , MySQL gives me this error:

#1227 – Access denied; you need (at least one of) the SUPER privilege(s) for this operation

I’m using the root user of my WHM and open cPanel of one of the accounts I have.

Upvotes: 2

Views: 1566

Answers (1)

nathan hayfield
nathan hayfield

Reputation: 2685

There is a difference between Server Root and MySql User Privileges. You need to give yourself MySql privileges. See MySQL: Grant **all** privileges on database

Also this link has some valuable mysql commands that you will find useful: http://pentestmonkey.net/cheat-sheet/sql-injection/mysql-sql-injection-cheat-sheet

Upvotes: 6

Related Questions