2 # This script is designed to be used by Nagios. It checks for the availability of both Microsoft SQL Server 7 and 2000.
6 # FreeTDS 6.0+ (http://www.freetds.org/)
8 # It was written by Tom De Blende (tom.deblende@village.uunet.be) in 2003.
11 # Version 1.1: Rewritten the initial script so that it not only works from the CLI but also from within Nagios. Always helpful...
12 # Version 1.2: Grouped output so things look a bit better.
13 # Version 2.0: Rewritten the plugin to support version 6.0+ of FreeTDS.
14 # Removed sqsh requirement as version 6.0+ of FreeTDS now offers its own CLI client: tsql.
15 # Older versions of FreeTDS are no longer supported.
18 # You might want to change these values:
24 mktempcmd
=`which mktemp`
30 ###################################################################################################################
38 if [ ! "$#" == "4" ]; then
39 echo -e "\nYou did not supply enough arguments. \nUsage: $0 <host> <username> <password> <version> \n \n$0 checks Microsoft SQL Server connectivity. It works with versions 7 and 2000.\n\nYou need a working version of FreeTDS (http://www.freetds.org/) and tsql (included in FreeTDS 6.0+) to connect to the SQL server. \nIt was written by Tom De Blende (tom.deblende@village.uunet.be) in 2003. \n\nExample:\n $0 dbserver sa f00bar 2000\n" && exit "3"
41 elif [ $tsqlcmd == "" ]; then
42 echo -e "tsql not found! Please verify you have a working version of tsql (included in the FreeTDS version 6.0+) and enter the full path in the script." && exit "3"
49 # Creating the command file that contains the sql statement that has to be run on the SQL server.
51 tmpfile
=`$mktempcmd /tmp/$hostname.XXXXXX`
53 if [ $srv == "7" ]; then
55 elif [ $srv == "2000" ]; then
58 echo -e "$srv is not a supported MS SQL Server version!" && exit "3"
61 echo -e "select loginame from sysprocesses where spid > $spid order by loginame asc\ngo" > $tmpfile
64 # Running tsql to get the results back.
66 resultfile
=`$mktempcmd /tmp/$hostname.XXXXXX`
67 errorfile
=`$mktempcmd /tmp/$hostname.XXXXXX`
68 $tsqlcmd -S $hostname -U $usr -P $pswd < $tmpfile 2>$errorfile > $resultfile
70 $grepcmd -q "Login failed for user" $errorfile
72 if [ "$?" == "0" ]; then
73 $rmcmd -f $tmpfile $resultfile $errorfile;
74 echo CRITICAL
- Could not
make connection to SQL server. Login failed.
;
78 $grepcmd -q "There was a problem connecting to the server" $errorfile
80 if [ "$?" == "0" ]; then
81 $rmcmd -f $tmpfile $resultfile $errorfile;
82 echo CRITICAL
- Could not
make connection to SQL server. Incorrect server name or SQL service not running.
;
86 resultfileln
=`$catcmd $resultfile | $wccmd -l | $sedcmd 's/ //g'`
88 if [ "$resultfileln" == "2" ]; then
89 $rmcmd -f $tmpfile $resultfile $errorfile;
90 echo CRITICAL
- Could not
make connection to SQL server. No data received from
host.
;
93 nmbr
=`$catcmd $resultfile | $grepcmd -v locale | $grepcmd -v charset| $grepcmd -v 1\> | $sedcmd '/^$/d' | $sedcmd 's/ //g' | $wccmd -l | sed 's/ //g'`
94 users
=`$catcmd $resultfile | $grepcmd -v locale | $grepcmd -v charset| $grepcmd -v 1\> | $sedcmd '/^$/d' | $sedcmd 's/ //g' | $uniqcmd -c | $trcmd \\\n , | $sedcmd 's/,$/./g' | $sedcmd 's/,/, /g' | $sedcmd 's/ //g' | $trcmd \\\t " " | $sedcmd 's/ \./\./g' | $sedcmd 's/ ,/,/g'`
95 $rmcmd -f $tmpfile $resultfile;
96 echo "OK - MS SQL Server $srv has $nmbr user(s) connected: $users" |
sed 's/: $/./g';
102 $rmcmd -f $tmpfile $resultfile $errorfile