check_service.sh 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. #!/usr/bin/env bash
  2. # Author: Jon Schipp
  3. # 2015-03-09 [Pascal Hegy] - Add sudo for linux
  4. # 2015-03-09 [Pascal Hegy] - Change USER variable to USERNAME to avoid the use and confusion with the USER env variable
  5. # 2017-08-30 [Roberto Leibman] - Reordered checks to make sure dead and inactive get checked first
  6. ########
  7. # Examples:
  8. # 1.) List services for osx
  9. # $ ./check_service.sh -l -o osx
  10. #
  11. # 2.) Check status of SSH service on a linux machine
  12. # $ ./check_service.sh -o linux -s sshd
  13. # 3.) Manually select service management tool and service
  14. # $ ./check_service.sh -o linux -t "service rsyslog status"
  15. # Nagios Exit Codes
  16. OK=0
  17. WARNING=1
  18. CRITICAL=2
  19. UNKNOWN=3
  20. usage()
  21. {
  22. cat <<EOF
  23. Check status of system services for Linux, FreeBSD, OSX, and AIX.
  24. Options:
  25. -s <service> Specify service name
  26. -l List services
  27. -o <os> OS type, "linux/osx/freebsd/aix"
  28. -u <user> User if you need to ``sudo -u'' for launchctl (def: nagios, linux and osx only)
  29. -t <tool> Manually specify service management tool (def: autodetect) with status and service
  30. e.g. ``-t "service nagios status"''
  31. EOF
  32. }
  33. argcheck() {
  34. # if less than n argument
  35. if [ $ARGC -lt $1 ]; then
  36. echo "Missing arguments! Use \`\`-h'' for help."
  37. exit 1
  38. fi
  39. }
  40. os_check() {
  41. if [ "$OS" == null ]; then
  42. unamestr=$(uname)
  43. if [[ $unamestr == 'Linux' ]]; then
  44. OS='linux'
  45. elif [[ $unamestr == 'FreeBSD' ]]; then
  46. OS='freebsd'
  47. elif [[ $unamestr == 'Darwin' ]]; then
  48. OS='osx'
  49. else
  50. echo "OS not recognized, Use \`-o\` and specify the OS as an argument"
  51. exit 3
  52. fi
  53. fi
  54. }
  55. determine_service_tool() {
  56. TRUST_EXIT_CODE=0
  57. if [[ $OS == linux ]]; then
  58. if command -v systemctl >/dev/null 2>&1; then
  59. SERVICETOOL="systemctl status $SERVICE | grep 'Active: '"
  60. LISTTOOL="systemctl"
  61. if [ $USERNAME ]; then
  62. SERVICETOOL="sudo -u $USERNAME systemctl status $SERVICE | grep 'Active: '"
  63. LISTTOOL="sudo -u $USERNAME systemctl"
  64. fi
  65. # TRUST_EXIT_CODE=1
  66. elif command -v initctl >/dev/null 2>&1; then
  67. SERVICETOOL="status $SERVICE"
  68. LISTTOOL="initctl list"
  69. if [ $USERNAME ]; then
  70. SERVICETOOL="sudo -u $USERNAME status $SERVICE"
  71. LISTTOOL="sudo -u $USERNAME initctl list"
  72. fi
  73. elif command -v service >/dev/null 2>&1; then
  74. SERVICETOOL="service $SERVICE status"
  75. LISTTOOL="service --status-all"
  76. if [ $USERNAME ]; then
  77. SERVICETOOL="sudo -u $USERNAME service $SERVICE status"
  78. LISTTOOL="sudo -u $USERNAME service --status-all"
  79. fi
  80. elif command -v chkconfig >/dev/null 2>&1; then
  81. SERVICETOOL=chkconfig
  82. LISTTOOL="chkconfig --list"
  83. if [ $USERNAME ]; then
  84. SERVICETOOL="sudo -u $USERNAME chkconfig"
  85. LISTTOOL="sudo -u $USERNAME chkconfig --list"
  86. fi
  87. elif [ -f /etc/init.d/$SERVICE ] || [ -d /etc/init.d ]; then
  88. SERVICETOOL="/etc/init.d/$SERVICE status | tail -1"
  89. LISTTOOL="ls -1 /etc/init.d/"
  90. if [ $USERNAME ]; then
  91. SERVICETOOL="sudo -u $USERNAME /etc/init.d/$SERVICE status | tail -1"
  92. LISTTOOL="sudo -u $USERNAME ls -1 /etc/init.d/"
  93. fi
  94. else
  95. echo "Unable to determine the system's service tool!"
  96. exit 1
  97. fi
  98. fi
  99. if [[ $OS == freebsd ]]; then
  100. if command -v service >/dev/null 2>&1; then
  101. SERVICETOOL="service $SERVICE status"
  102. LISTTOOL="service -l"
  103. elif [ -f /etc/rc.d/$SERVICE ] || [ -d /etc/rc.d ]; then
  104. SERVICETOOL="/etc/rc.d/$SERVICE status"
  105. LISTTOOL="ls -1 /etc/rc.d/"
  106. else
  107. echo "Unable to determine the system's service tool!"
  108. exit 1
  109. fi
  110. fi
  111. if [[ $OS == osx ]]; then
  112. if [ -f /usr/sbin/serveradmin >/dev/null 2>&1 ] && serveradmin list | grep "$SERVICE" 2>&1 >/dev/null; then
  113. SERVICETOOL="serveradmin status $SERVICE"
  114. LISTTOOL="serveradmin list"
  115. elif [ -f /Applications/Server.app/Contents/ServerRoot/usr/sbin/serveradmin >/dev/null 2>&1 ] && \
  116. /Applications/Server.app/Contents/ServerRoot/usr/sbin/serveradmin list | \
  117. grep "$SERVICE" 2>&1 >/dev/null; then
  118. SERVICETOOL="/Applications/Server.app/Contents/ServerRoot/usr/sbin/serveradmin status $SERVICE"
  119. LISTTOOL="/Applications/Server.app/Contents/ServerRoot/usr/sbin/serveradmin list"
  120. elif command -v launchctl >/dev/null 2>&1; then
  121. SERVICETOOL="launchctl list | grep -v ^- | grep $SERVICE || echo $SERVICE not running! "
  122. LISTTOOL="launchctl list"
  123. if [ $USERNAME ]; then
  124. SERVICETOOL="sudo -u $USERNAME launchctl list | grep -v ^- | grep $SERVICE || echo $SERVICE not running! "
  125. LISTTOOL="sudo -u $USERNAME launchctl list"
  126. fi
  127. elif command -v service >/dev/null 2>&1; then
  128. SERVICETOOL="service --test-if-configured-on $SERVICE"
  129. LISTTOOL="service list"
  130. else
  131. echo "Unable to determine the system's service tool!"
  132. exit 1
  133. fi
  134. fi
  135. if [[ $OS == aix ]]; then
  136. if command -v lssrc >/dev/null 2>&1; then
  137. SERVICETOOL="lssrc -s $SERVICE | grep -v Subsystem"
  138. LISTTOOL="lssrc -a"
  139. else
  140. echo "Unable to determine the system's service tool!"
  141. exit 1
  142. fi
  143. fi
  144. }
  145. ARGC=$#
  146. LIST=0
  147. MANUAL=0
  148. OS=null
  149. SERVICETOOL=null
  150. LISTTOOL=null
  151. SERVICE=".*"
  152. #USERNAME=nagios
  153. argcheck 1
  154. while getopts "hls:o:t:u:" OPTION
  155. do
  156. case $OPTION in
  157. h)
  158. usage
  159. exit 0
  160. ;;
  161. l)
  162. LIST=1
  163. ;;
  164. s)
  165. SERVICE="$OPTARG"
  166. ;;
  167. o)
  168. if [[ "$OPTARG" == linux ]]; then
  169. OS="$OPTARG"
  170. elif [[ "$OPTARG" == osx ]]; then
  171. OS="$OPTARG"
  172. elif [[ "$OPTARG" == freebsd ]]; then
  173. OS="$OPTARG"
  174. elif [[ "$OPTARG" == aix ]]; then
  175. OS="$OPTARG"
  176. else
  177. echo "Unknown type!"
  178. exit 1
  179. fi
  180. ;;
  181. t)
  182. MANUAL=1
  183. MANUALSERVICETOOL="$OPTARG"
  184. ;;
  185. u)
  186. USERNAME="$OPTARG"
  187. ;;
  188. \?)
  189. exit 1
  190. ;;
  191. esac
  192. done
  193. os_check
  194. if [ $MANUAL -eq 1 ]; then
  195. SERVICETOOL=$MANUALSERVICETOOL
  196. else
  197. determine_service_tool
  198. fi
  199. # -l conflicts with -t
  200. if [ $MANUAL -eq 1 ] && [ $LIST -eq 1 ]; then
  201. echo "Options conflict: \`\`-t'' and \`\`-l''"
  202. exit 2
  203. fi
  204. if [ $LIST -eq 1 ]; then
  205. if [[ $LISTTOOL != null ]]; then
  206. $LISTTOOL
  207. exit 0
  208. else
  209. echo "OS not specified! Use \`\`-o''"
  210. exit 2
  211. fi
  212. fi
  213. # Check the status of a service
  214. STATUS_MSG=$(eval "$SERVICETOOL" 2>&1)
  215. EXIT_CODE=$?
  216. ## Exit code from the service tool - if it's non-zero, we should
  217. ## probably return CRITICAL. (though, in some cases UNKNOWN would
  218. ## probably be more appropriate)
  219. [ $EXIT_CODE -ne 0 ] && echo "$STATUS_MSG" && exit $CRITICAL
  220. ## For systemd and most systems, $EXIT_CODE can be trusted - if it's 0, the service is running.
  221. ## Ref https://github.com/jonschipp/nagios-plugins/issues/15
  222. [ $TRUST_EXIT_CODE -eq 1 ] && [ $EXIT_CODE -eq 0 ] && echo "$STATUS_MSG" && exit $OK
  223. case $STATUS_MSG in
  224. *stop*)
  225. echo "$STATUS_MSG"
  226. exit $CRITICAL
  227. ;;
  228. *STOPPED*)
  229. echo "$STATUS_MSG"
  230. exit $CRITICAL
  231. ;;
  232. *not*running*)
  233. echo "$STATUS_MSG"
  234. exit $CRITICAL
  235. ;;
  236. *inactive*)
  237. echo "$STATUS_MSG"
  238. exit $CRITICAL
  239. ;;
  240. *dead*)
  241. echo "$STATUS_MSG"
  242. exit $CRITICAL
  243. ;;
  244. *running*)
  245. echo "$STATUS_MSG"
  246. exit $OK
  247. ;;
  248. *RUNNING*)
  249. echo "$STATUS_MSG"
  250. exit $OK
  251. ;;
  252. *SUCCESS*)
  253. echo "$STATUS_MSG"
  254. exit $OK
  255. ;;
  256. *[eE]rr*)
  257. echo "Error in command: $STATUS_MSG"
  258. exit $CRITICAL
  259. ;;
  260. *[fF]ailed*)
  261. echo "$STATUS_MSG"
  262. exit $CRITICAL
  263. ;;
  264. *[eE]nable*)
  265. echo "$STATUS_MSG"
  266. exit $OK
  267. ;;
  268. *[dD]isable*)
  269. echo "$STATUS_MSG"
  270. exit $CRITICAL
  271. ;;
  272. *[cC]annot*)
  273. echo "$STATUS_MSG"
  274. exit $CRITICAL
  275. ;;
  276. *[aA]ctive*)
  277. echo "$STATUS_MSG"
  278. exit $OK
  279. ;;
  280. *Subsystem*not*on*file)
  281. echo "$STATUS_MSG"
  282. exit $CRITICAL
  283. ;;
  284. [1-9][1-9]*)
  285. echo "$SERVICE running: $STATUS_MSG"
  286. exit $OK
  287. ;;
  288. "")
  289. echo "$SERVICE is not running: no output from service command"
  290. exit $CRITICAL
  291. ;;
  292. *)
  293. echo "Unknown status: $STATUS_MSG"
  294. echo "Is there a typo in the command or service configuration?: $STATUS_MSG"
  295. exit $UNKNOWN
  296. ;;
  297. esac