Search This Blog

24 July, 2013

MySQL max connection status for optimisations

you can use the below query to check the max connection statistics

select version();show variables like "%max_connections%";show global status
         like "%Max_used%";show status like "%thread%";


 Max_used_connections : The maximum number of connections that have been in use simultaneously since the server started.
max_connections : The maximum permitted number of simultaneous client connections.

No comments:

Post a Comment

tmux enabling mouse interaction

Add the below line to the ~/.tmux.conf setw -g mouse on save the file and exit from the tmux shell, you should be able to use your mouse to ...