Size: 711
Comment:
|
Size: 802
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 14: | Line 14: |
apt-get install redis-server redis-sentinel | apt-get install redis-server redis-sentinel redis-cli |
Line 25: | Line 25: |
The same goes for `/etc/redis/sentinel.conf` {{{ bind 127.0.0.1 192.168.1.58 }}} |
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 redis-cli
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