Differences between revisions 41 and 42
Revision 41 as of 2021-01-04 21:59:29
Size: 2603
Comment:
Revision 42 as of 2021-01-04 22:26:27
Size: 3260
Comment:
Deletions are marked like this. Additions are marked like this.
Line 69: Line 69:
=== Redis Sentinel ===

Change the contents of the redis configuration file in `/etc/redis/sentinel.conf`.

Add the IP-address for each of the servers. Each of the redis servers needs to listen on its own IP-address.
{{{
bind 192.168.1.59 127.0.0.1 ::1
}}}

Configure each of the hosts to monitor the master redis server, and at least 2 sentinels should agree to change the master
{{{
sentinel monitor redis01 192.168.1.59 6379 2
}}}

Set the time the redis master can be down
{{{
sentinel down-after-milliseconds redis01 5000
}}}

Finally set the timeout before the failover happens
{{{
sentinel failover-timeout redis01 30000
}}}

Redis

Redis is an in memory data structure storage. It will be used to share PHP-sessions between the apache servers. To guarantee a robust deployment three redis servers will be configured.

  • 192.168.1.59 redis01 (master)
  • 192.168.1.60 redis02 (replica)
  • 192.168.1.61 redis03 (replica)

Software

apt-get install redis-server redis-sentinel

Configuration

Redis Server

Change the contents of the redis configuration file in /etc/redis/redis.conf.

Add the IP-address for each of the servers. Each of the redis servers needs to listen on its own IP-address.

bind 192.168.1.59 127.0.0.1 ::1

Enable redis to listen on the network, instead of only listening on the loopback device.

protected-mode no

Now restart the redis master

service redis-server restart

And stop the replicas

service redis-server stop

On each of the replicas, set them up af a replica of the master

replicaof 192.168.1.59 6379

Start the replicas again

services redis-server start

You should now be able to see the replicas from the master redis-cli -h 192.168.1.59.

192.168.1.59:6379> info replication
# Replication
role:master
connected_slaves:2
slave0:ip=192.168.1.60,port=6379,state=online,offset=2615,lag=0
slave1:ip=192.168.1.61,port=6379,state=online,offset=2615,lag=1
master_replid:79a21f08669303e71990ea8819830f30c94384c6
master_replid2:0000000000000000000000000000000000000000
master_repl_offset:2615
second_repl_offset:-1
repl_backlog_active:1
repl_backlog_size:1048576
repl_backlog_first_byte_offset:1
repl_backlog_histlen:2615

Redis Sentinel

Change the contents of the redis configuration file in /etc/redis/sentinel.conf.

Add the IP-address for each of the servers. Each of the redis servers needs to listen on its own IP-address.

bind 192.168.1.59 127.0.0.1 ::1

Configure each of the hosts to monitor the master redis server, and at least 2 sentinels should agree to change the master

sentinel monitor redis01 192.168.1.59 6379 2

Set the time the redis master can be down

sentinel down-after-milliseconds redis01 5000

Finally set the timeout before the failover happens

sentinel failover-timeout redis01 30000

References

None: Redis (last edited 2022-01-03 22:09:21 by Kristian Kallenberg)