Trying to grant privileges to an existing database user using
GRANT SELECT, INSERT, UPDATE ON myschema.* TO 'OptimusPrime'@'cybertron';
But I keep getting
1410, 'You are not allowed to create a user with GRANT'
I'm stumped since I'm certain that user OptimusPrime exists in the database (!). I verified it using
select * from mysql.user;
and indeed, OptimusPrime is there. I'm stumped. Anyone as a clue on why I keep getting this? I'm not trying to create a new user
EDIT: I'm using the root user
EDIT2: Tried doing that to root user. Getting same error. I'll try to reinstall the server. Something is fishy. I'll update once I've done that