How to grant super privilege to my database to set global. How to grant super privilege? I got an error while granting the privilege .
Access Denied for the 'user'@'localhost'
How to grant super privilege to my database to set global. How to grant super privilege? I got an error while granting the privilege .
Access Denied for the 'user'@'localhost'
You should just execute these queries, make sure that MySQL user who executes these queries has GRANT and SUPER privilege:
CREATE USER 'user'@'%' IDENTIFIED BY 'user_pass';
GRANT SUPER ON *.* TO 'user'@'%';