'MySQL Workbench -> not enough privileges to view Client Connections
I set a MySQL workbench and when I try to access the tab with Client Connections it shows the message:
The account you are currently using does not have sufficient privileges to view the client connections
But If I use the terminal and execute a SHOW FULL PROCESSLIST it resolves correctly.
I am missing some MySQL Workbench configuration?
Solution 1:[1]
GRANT ALL PRIVILEGES ON databasename.* TO 'username'@'localhost';
please try this query
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Ihor Konovalenko |

