Created
July 8, 2011 04:28
-
-
Save aw/1071144 to your computer and use it in GitHub Desktop.
Check if a MySQL server is healthy
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 | |
# | |
# This script checks if a mysql server is healthy running on localhost. It will | |
# return: | |
# | |
# "HTTP/1.x 200 OK\r" (if mysql is running smoothly) | |
# | |
# - OR - | |
# | |
# "HTTP/1.x 500 Internal Server Error\r" (else) | |
# | |
# The purpose of this script is make haproxy capable of monitoring mysql properly | |
# | |
# Author: Unai Rodriguez | |
# | |
# It is recommended that a low-privileged-mysql user is created to be used by | |
# this script. Something like this: | |
# | |
# mysql> GRANT SELECT on mysql.* TO 'mysqlchkusr'@'localhost' \ | |
# -> IDENTIFIED BY '257retfg2uysg218' WITH GRANT OPTION; | |
# mysql> flush privileges; | |
# | |
# Script modified by Alex Williams - August 4, 2009 | |
# - removed the need to write to a tmp file, instead store results in memory | |
MYSQL_HOST="172.16.0.60" | |
MYSQL_PORT="3306" | |
MYSQL_USERNAME="replication_user" | |
MYSQL_PASSWORD="replication_pass" | |
# | |
# We perform a simple query that should return a few results :-p | |
ERROR_MSG=`/usr/bin/mysql --host=$MYSQL_HOST --port=$MYSQL_PORT --user=$MYSQL_USERNAME --password=$MYSQL_PASSWORD -e "show databases;" 2>/dev/null` | |
# | |
# Check the output. If it is not empty then everything is fine and we return | |
# something. Else, we just do not return anything. | |
# | |
if [ "$ERROR_MSG" != "" ] | |
then | |
# mysql is fine, return http 200 | |
/bin/echo -e "HTTP/1.1 200 OK\r\n" | |
/bin/echo -e "Content-Type: Content-Type: text/plain\r\n" | |
/bin/echo -e "\r\n" | |
/bin/echo -e "MySQL is running.\r\n" | |
/bin/echo -e "\r\n" | |
else | |
# mysql is fine, return http 503 | |
/bin/echo -e "HTTP/1.1 503 Service Unavailable\r\n" | |
/bin/echo -e "Content-Type: Content-Type: text/plain\r\n" | |
/bin/echo -e "\r\n" | |
/bin/echo -e "MySQL is *down*.\r\n" | |
/bin/echo -e "\r\n" | |
fi |
@kopax Hi, sorry for the late reply!
You can find usage instructions here: http://www.alexwilliams.ca/blog/2009/08/10/using-haproxy-for-mysql-failover-and-redundancy/
It's a bit old though, but should still work..
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, how do we use it ? Do you use it with the health check marathon (then TCP or HTTP) ?
Where do you put this file (project, master, slave) and where do you set the env variable (Dockerfile, Marathon json, ...) ?