master
md 50 lines 1.98 KB
Rendered Raw
1 ### Understand the alert
2
3 The `redis_master_link_down` alert is triggered when there is a disconnection between a Redis master and its slave for more than 10 seconds. This alert indicates a potential problem with the replication process and can impact the data consistency across multiple instances.
4
5 ### Troubleshoot the alert
6
7 1. Check the Redis logs
8
9 Examine the Redis logs for any errors or issues regarding the disconnection between the master and slave instances. By default, Redis log files are located at `/var/log/redis/redis.log`. Look for messages related to replication, network errors or timeouts.
10
11 ```
12 grep -i "replication" /var/log/redis/redis.log
13 grep -i "timeout" /var/log/redis/redis.log
14 ```
15
16 2. Check the Redis replication status
17
18 Connect to the Redis master using the `redis-cli` tool, and execute the `INFO` command to get the detailed information about the master instance:
19
20 ```
21 redis-cli
22 INFO REPLICATION
23 ```
24
25 Also, check the replication status on the slave instance. If you have access to the IP address and port of the slave, connect to it and run the same `INFO` command.
26
27 3. Verify the network connection between the master and slave instances
28
29 Test the network connectivity using `ping` and `telnet` or `nc` commands, ensuring that the connection between the master and slave instances is stable and there are no issues with firewalls or network policies.
30
31 ```
32 ping <slave_ip_address>
33 telnet <slave_ip_address> <redis_port>
34 ```
35
36 4. Restart the Redis instances (if needed)
37
38 If Redis instances are experiencing issues or are unable to reconnect, consider restarting them. Be cautious as restarting instances might result in data loss or consistency issues.
39
40 ```
41 sudo systemctl restart redis
42 ```
43
44 5. Monitor the situation
45
46 After addressing the potential issues, keep an eye on the Redis instances to ensure that the problem doesn't reoccur.
47
48 ### Useful resources
49
50 1. [Redis Replication Documentation](https://redis.io/topics/replication)