Skip to content

Instantly share code, notes, and snippets.

@BRELID
Created August 19, 2019 08:03
Show Gist options
  • Save BRELID/d480baebee0b20fd02acde89de751eb9 to your computer and use it in GitHub Desktop.
Save BRELID/d480baebee0b20fd02acde89de751eb9 to your computer and use it in GitHub Desktop.
Check if mongo db is running on Linux / Mac OS
// Command on linux / mac os:
// Commande sur linux et mac os :
ps -ef | grep mongod | grep -v grep | wc -l | tr -d ' '
// If result is 1, it's ok, mongo is running.
// Si vous avez 1 comme réponse, c'est que mongo est en train de tourner.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment