Skip to content

Instantly share code, notes, and snippets.

@pranavcode
Created April 1, 2019 05:25
Show Gist options
  • Save pranavcode/c70d01c4b0bede7c2033071b473dbd5a to your computer and use it in GitHub Desktop.
Save pranavcode/c70d01c4b0bede7c2033071b473dbd5a to your computer and use it in GitHub Desktop.
Velotio - HashiCorp Consul Part 2 - MongoDB Replica Set - Check Primary instance using shell script
#!/bin/bash
mongo_primary=$(mongo --quiet --eval 'JSON.stringify(db.isMaster())' | jq -r .ismaster 2> /dev/null)
if [[ $mongo_primary == false ]]; then
exit 1
fi
echo "Mongo primary healthy and reachable"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment