I need a user in mysql to run only one query
SHOW PROCESSLIST;
and show all user process list in mysql (like root user) And this user has no other access
I need this user just for debugging queries.
I do not want the root user to use this simple query!
Any solution?
https://dev.mysql.com/doc/refman/8.0/en/show-processlist.html says:
Let's test creating a user and granting them only the PROCESS privilege:
Yes, you can create a special user without SUPER privilege who can view the processlist.