Skip to content

Instantly share code, notes, and snippets.

@taosx
Created June 8, 2017 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taosx/f8a9a8e8a1c9b47d12b0ab9e552a4a51 to your computer and use it in GitHub Desktop.
Save taosx/f8a9a8e8a1c9b47d12b0ab9e552a4a51 to your computer and use it in GitHub Desktop.
Wait for mysql connection
#https://stackoverflow.com/a/37300565
until nc -z -v -w30 $MYSQL_HOST 3306
do
echo "Waiting for database connection..."
# wait for 5 seconds before check again
sleep 5
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment