summaryrefslogtreecommitdiff
path: root/sentinel.conf
Commit message (Collapse)AuthorAgeFilesLines
* Fix sentinel.conf typoJan-Erik Rediger2014-09-291-1/+1
| | | | Closes #1739
* Sentinel: clarify announce-ip/port options in sentinel.conf.antirez2014-09-041-3/+18
|
* sentinel: Decouple bind address from address sent to other sentinelsDara Kong2014-09-041-0/+7
| | | | | | | There are instances such as EC2 where the bind address is private (behind a NAT) and cannot be accessible from WAN. https://groups.google.com/d/msg/redis-db/PVVvjO4nMd0/P3oWC036v3cJ
* Sentinel example config: explain you don't need to specify slaves.antirez2014-05-261-0/+6
|
* Sentinel: Add "dir /tmp" directive in example sentinel.conf.antirez2014-05-121-0/+7
|
* Typo in sentinel.conf, exists -> exits.antirez2014-03-071-2/+2
|
* fix typo in redis.conf and sentinel.confYubao Liu2013-12-111-3/+3
|
* Sentinel: example sentinel.conf updated.antirez2013-11-211-31/+27
|
* Fixed many typos.guiquanz2013-01-191-1/+1
|
* Sentinel: Support for AUTH.antirez2012-09-261-0/+19
|
* Sentinel: client reconfiguration script execution.antirez2012-08-021-0/+37
| | | | | | | | | | | | | | | | | | This commit adds support to optionally execute a script when one of the following events happen: * The failover starts (with a slave already promoted). * The failover ends. * The failover is aborted. The script is called with enough parameters (documented in the example sentinel.conf file) to provide information about the old and new ip:port pair of the master, the role of the sentinel (leader or observer) and the name of the master. The goal of the script is to inform clients of the configuration change in a way specific to the environment Sentinel is running, that can't be implemented in a genereal way inside Sentinel itself.
* Sentinel: sentinel.conf self-documenation improved.antirez2012-07-311-0/+21
|
* comment fixJeremy Zawodny2012-07-281-1/+1
| | | | improve English a bit. :-)
* Sentinel: ability to execute notification scripts.antirez2012-07-251-5/+29
|
* Some cleanup in sentinel.confmrb2012-07-251-3/+11
|
* Fixed an error in the example sentinel.conf.antirez2012-07-231-1/+1
|
* Typo.antirez2012-07-231-1/+1
|
* First implementation of Redis Sentinel.antirez2012-07-231-0/+41
This commit implements the first, beta quality implementation of Redis Sentinel, a distributed monitoring system for Redis with notification and automatic failover capabilities. More info at http://redis.io/topics/sentinel