summaryrefslogtreecommitdiff
path: root/sentinel.conf
Commit message (Collapse)AuthorAgeFilesLines
* Sentinel: document how to undo a renamed command.antirez2018-09-171-1/+6
|
* Slave removal: capitalize ReplicaJakub Vrana2018-09-111-1/+1
|
* Slave removal: remove slave from sentinel.conf when possible.antirez2018-09-111-18/+18
| | | | | | | | All the occurrences translated, but the ones referring to SLAVEOF must be intact because that describe the actual Sentinel -> Redis protocol. In theory we could send REPLICAOF to Redis instances, but actually this would prevent Sentinel to be compatible with older Redis instances.
* remove duplicate bind in sentinel.confzhaozhao.zz2018-08-271-10/+0
|
* Merge pull request #2292 from lamby/sentinel-conf-defaultsSalvatore Sanfilippo2018-08-261-0/+25
|\ | | | | Make some defaults explicit in the sentinel.conf for package maintainers
| * Make some defaults explicit in the sentinel.conf for package maintainersChris Lamb2015-01-161-0/+25
| | | | | | | | | | | | | | | | | | | | This may look a little pointless (and it is a complete no-op change here) but as package maintainers need to modify these lines to actually daemonize (etc. etc) but it's far preferable if the diff is restricted to actually changing just that bit, not adding docs, etc. The less diff the better, in general. Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
* | Sentinel command renaming: document it into sentinel.conf.antirez2018-06-251-0/+19
| |
* | Sentinel: add an option to deny online script reconfiguration.antirez2018-06-141-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | The ability of "SENTINEL SET" to change the reconfiguration script at runtime is a problem even in the security model of Redis: any client inside the network may set any executable to be ran once a failover is triggered. This option adds protection for this problem: by default the two SENTINEL SET subcommands modifying scripts paths are denied. However the user is still able to rever that using the Sentinel configuration file in order to allow such a feature.
* | Sentinel example config: warn about protected mode.antirez2016-08-111-1/+16
|/
* 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