Skip to content

Instantly share code, notes, and snippets.

@VvanGemert
Created June 1, 2017 13:17
Show Gist options
  • Save VvanGemert/bb288d072773b61a7bbb42cbba06b238 to your computer and use it in GitHub Desktop.
Save VvanGemert/bb288d072773b61a7bbb42cbba06b238 to your computer and use it in GitHub Desktop.
MongoDB Master check with xinetd.d
#!/bin/bash
output=`mongo --quiet --eval 'db.isMaster().ismaster'`
if [[ "$output" == 'true' ]]
then
http_type="HTTP/1.0 200 OK"
mongo="master"
else
http_type="HTTP/1.0 503 Service Unavailable"
mongo="slave"
fi
echo $http_type
sleep 0.1
echo "Content-Type: text/html; charset=utf-8"
sleep 0.1
echo "Connection: close"
sleep 0.1
response="MongoDB is $mongo"
sleep 0.1
length=$(echo $response | wc -c)
sleep 0.1
echo "Content-Length: $length"
sleep 0.1
echo ""
sleep 0.1
echo $response
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment