debugsqlMinor
GRANT command not working in MySQL Server
Viewed 0 times
grantworkingmysqlservercommandnot
Problem
I'm trying to execute the below command as root user to provide accessiblity from my application.
But it returns
GRANT ALL ON communitycourts.* TO 'root'@'%' WITH GRANT OPTION;But it returns
0 rows affected, but when I dont see this in result of SHOW GRANTS. Pelase help meSolution
Two points to add:
- It is recommended to use another user other than root to connect to your DB in your application. Try to use root account for administration only. This can be good only on testing machines.
- Don't forget to
flush privilegesfor the changes to take effect. This is better than restarting mysql.
Context
StackExchange Database Administrators Q#13557, answer score: 4
Revisions (0)
No revisions yet.