Differences between revisions 1 and 6 (spanning 5 versions)
Revision 1 as of 2020-02-11 21:33:11
Size: 384
Comment:
Revision 6 as of 2020-02-11 23:19:46
Size: 792
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
INCOMPLETE DO NOT USE
Line 3: Line 5:
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 12: Line 14:
apt-get install redis-server apt-get install redis-server redis-sentinel
Line 17: Line 19:
Make sure the apache servers can reach redis. Change `bind 127.0.0.1` in `/etc/redis/redis.conf`. Each of the redis servers needs to listen on its own IP-address.

{{{
bind 127.0.0.1 192.168.1.58
}}}

The same goes for `/etc/redis/sentinel.conf`
{{{
bind 127.0.0.1 192.168.1.58
}}}
Line 20: Line 33:
 * https://redis.io/topics/replication

INCOMPLETE DO NOT USE

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.58 redis01
  • 192.168.1.59 redis02
  • 192.168.1.60 redis03

Software

apt-get install redis-server redis-sentinel

Configuration

Make sure the apache servers can reach redis. Change bind 127.0.0.1 in /etc/redis/redis.conf. Each of the redis servers needs to listen on its own IP-address.

bind 127.0.0.1 192.168.1.58

The same goes for /etc/redis/sentinel.conf

bind 127.0.0.1 192.168.1.58

References

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