Screen 2

Create a screen session Create a screen with most of the shells capabilities and a unique name. screen -aS my_screen_name Detach from the screen session Now that you are connected,…

Continue ReadingScreen 2

Mytop

Mytop: MySQL process monitor See whats going on under the hood of MySQL Installing Mytop wget http://jeremy.zawodny.com/mysql/mytop/mytop-1.6.tar.gz tar -zxvf mytop-1.6.tar.gz perl Makefile.PL make test make make install Dependencies * MySQL…

Continue ReadingMytop

Load Alert Monitoring

http://nixcraft.com/shell-scripting/923-cpu-usage-shell-script-monitoring-cpu-usage.html http://itmission.org/Main/Load-alert-bash-script-for-linux-servers Here is the script if 15 minutes load goes >= 6.0. Code: ----------------------------------------------------------------- #!/bin/bash # Set up limit below NOTIFY="6.0" FTEXT='load average:' # 15 min F15M="$(uptime | awk…

Continue ReadingLoad Alert Monitoring