MySQL create user with root privileges
To create a user with “root” privileges, you need to find what privileges root has, this can be done with the command SHOW GRANTS FOR ‘root’@’localhost’; You can use the following commands to create a new user GRANT ALL PRIVILEGES ON *.* TO ‘USER_NAME’@’localhost’ IDENTIFIED BY ‘PASSWORD_HERE’ WITH GRANT OPTION; GRANT PROXY ON ”@” TO … Read more