Calculate Maximum MySQL Memory Usage
Recently I found the following script pretty handy for calculating the maximum amount of memory mysql could use, based on the current buffers configuration. This is the source: #!/bin/sh# you might want to add some user authentication here mysql -e “show variables; show status” | awk ‘ { VAR[$1]=$2 } END { MAX_CONN =… Continue reading Calculate Maximum MySQL Memory Usage