Last active
January 21, 2024 22:28
-
-
Save hettiger/44d4f1b421061dd150edaf648ee53ad5 to your computer and use it in GitHub Desktop.
Monitor MariaDB replication
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 | |
## | |
# Configuration | |
## | |
MASTER_SERVER_ADDRESS="_ENTER_YOUR_LAPTOP_IP_HERE_" | |
MAILFROM="_ENTER_FROM_EMAIL_HERE_" | |
MAILTO="_ENTER_TO_EMAIL_HERE_" | |
## | |
# Check permissions | |
## | |
# For the root user "id -u" will always return "0" | |
if [ "$(id -u)" != "0" ] | |
then | |
echo "This script must be run as root" 2>&1 | |
exit 1 | |
fi | |
## | |
# Check connectivity | |
## | |
ping -c 1 "$MASTER_SERVER_ADDRESS" &> /dev/null | |
# "$?" is the result code of the above ping call and 0 means that the host is reachable. | |
if [ $? != 0 ] | |
then | |
echo "MariaDB master server is not reachable. Aborting ..." | |
exit 1 | |
fi | |
## | |
# Check MariaDB service availability | |
## | |
ERROR=$(mysql -h "$MASTER_SERVER_ADDRESS" -P 3306 2>&1) | |
if [ "$ERROR" = "ERROR 2002 (HY000): Can't connect to MySQL server on '$MASTER_SERVER_ADDRESS' (115)" ] | |
then | |
echo "MariaDB master server is reachable but MariaDB service is not running. Aborting ..." | |
exit 1 | |
fi | |
## | |
# Check replication status | |
## | |
STATUS=$(mysql -e "SHOW SLAVE STATUS \G;") | |
IO_IS_RUNNING=$(echo "$STATUS" | grep "Slave_IO_Running:" | awk '{ print $2 }') | |
SQL_IS_RUNNING=$(echo "$STATUS" | grep "Slave_SQL_Running:" | awk '{ print $2 }') | |
MESSAGE="" | |
if [ "$IO_IS_RUNNING" = "Yes" ] && [ "$SQL_IS_RUNNING" = "Yes" ] | |
then | |
MESSAGE+="Replication is running." | |
else | |
MESSAGE+="Replication is not running." | |
MESSAGE+="\n\n" | |
MESSAGE+="Execute the SQL query \"SHOW SLAVE STATUS;\" for debugging information." | |
MESSAGE+="\n" | |
MESSAGE+="You can skip a single error executing the SQL query \"SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1;\"." | |
echo -e "$MESSAGE" | mail -s "MariaDB replication ERROR encountered" -a "From: $MAILFROM" "$MAILTO" | |
fi | |
echo -e "$MESSAGE" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using the unix_socket plugin for mariadb root user authentication.