Created
June 1, 2017 13:17
-
-
Save VvanGemert/bb288d072773b61a7bbb42cbba06b238 to your computer and use it in GitHub Desktop.
MongoDB Master check with xinetd.d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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