I have a user called test
, and I want to grant process
privilege to him.
So far, I have tried:
grant process on *.* to test;
FLUSH PRIVILEGES;
then, I show all grants for user test
by running:
show grants for test@'%';
the result does contain a `PROCESS' line like:
GRANT PROCESS ON *.* TO 'test'@'%' IDENTIFIED BY PASSWORD ...
...
...
But it didn't appear to work for user test
.
So, how can I grant PROCESS privilege to a user?
This should do:
GRANT PROCESS, SELECT ON *.* ...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With