THOR Posted October 14, 2011 Posted October 14, 2011 Global Privileges Global privileges are administrative or apply to all databases on a given server. To assign global privileges, use ON *.* syntax: GRANT ALL ON *.* TO 'SomeMysqlUser'@'somehost'; or GRANT ALL PRIVILEGES ON *.* TO 'YourMysqlUserName'@'YourIP' IDENTIFIED BY "YourMysqlPassword"; Example: GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY "*****"; __________________________________________ Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.