Differences between revisions 21 and 38 (spanning 17 versions)
Revision 21 as of 2021-01-02 01:26:04
Size: 1996
Comment:
Revision 38 as of 2021-01-04 21:54:44
Size: 1983
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
DISCLAIMER
THIS ONLY WORKS IN BUSTER
INCOMPLETE DO NOT USE
Line 16: Line 12:
apt-get install redis-server apt-get install redis-server redis-sentinel
Line 27: Line 23:
bind 127.0.0.1 192.168.1.58 bind 192.168.1.59 127.0.0.1 ::1
Line 29: Line 25:
Line 36: Line 31:
Redis stores its data in memory only, hence its speed. To make sure redis does not loose its state, in case of a hardware failure, this will enable it to store the state as it changes in a file on disk.
{{{
appendonly yes
}}}

Activate redis cluster features
{{{
cluster-enabled yes
cluster-config-file nodes-6379.conf
cluster-node-timeout 15000
}}}

Restart the redis server on all hosts.
Now restart the redis master
Line 52: Line 35:

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
}}}

Start the replicas again
{{{
services redis-server start
}}}
Line 64: Line 63:
 * https://www.tecmint.com/setup-redis-cluster-in-centos-8/
 * https://stackoverflow.com/questions/39568561/how-to-solve-redis-cluster-waiting-for-the-cluster-to-join-issue

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
  • 192.168.1.60 redis02
  • 192.168.1.61 redis03

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

Start the replicas again

services redis-server start

References

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