Differences between revisions 1 and 39 (spanning 38 versions)
Revision 1 as of 2020-02-11 21:33:11
Size: 384
Comment:
Revision 39 as of 2021-01-04 21:55:07
Size: 2012
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
Redis is an in memory data structure storage. It will be used to share PHP-sessions between the apache servers. Three redis servers will be configured 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.
Line 5: Line 5:
 * 192.168.1.58 redis01
* 192.168.1.59 redis02
 * 192.168.1.60 redis03
 * 192.168.1.59 redis01 (master)
 * 192.168.1.60 redis02 (replica)
 * 192.168.1.61 redis0
3 (replica)
Line 12: Line 12:
apt-get install redis-server apt-get install redis-server redis-sentinel
Line 17: Line 17:
=== 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
}}}

Line 20: Line 55:
 * https://redis.io/topics/replication
 * https://www.haproxy.com/blog/haproxy-advanced-redis-health-check/
 * https://medium.com/@amila922/redis-sentinel-high-availability-everything-you-need-to-know-from-dev-to-prod-complete-guide-deb198e70ea6
 * https://blog.usejournal.com/first-step-to-redis-cluster-7712e1c31847
 * https://www.linode.com/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/
 * https://www.willandskill.se/en/setup-a-highly-available-redis-cluster-with-sentinel-and-haproxy/
 * https://www.tecmint.com/setup-redis-replication-in-centos-8/
 * https://www.tecmint.com/setup-redis-high-availability-with-sentinel-in-centos-8/
 * 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 (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

Start the replicas again

services redis-server start

References

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