1. 28 Nov, 2018 1 commit
  2. 22 Nov, 2018 2 commits
  3. 21 Nov, 2018 1 commit
  4. 20 Nov, 2018 1 commit
  5. 19 Nov, 2018 6 commits
  6. 16 Nov, 2018 1 commit
  7. 11 Nov, 2018 1 commit
  8. 08 Nov, 2018 2 commits
  9. 07 Nov, 2018 1 commit
  10. 06 Nov, 2018 7 commits
  11. 05 Nov, 2018 10 commits
  12. 03 Nov, 2018 2 commits
  13. 02 Nov, 2018 1 commit
  14. 31 Oct, 2018 4 commits
    • Salvatore Sanfilippo's avatar
      Merge pull request #5511 from gkorland/patch-1 · edce5150
      Salvatore Sanfilippo authored
      Fix some typos
      edce5150
    • Guy Korland's avatar
      Fix some typos · 48d8b3d8
      Guy Korland authored
      48d8b3d8
    • antirez's avatar
      Add support for Sentinel authentication. · fa675256
      antirez authored
      So far it was not possible to setup Sentinel with authentication
      enabled. This commit introduces this feature: every Sentinel will try to
      authenticate with other sentinels using the same password it is
      configured to accept clients with.
      
      So for instance if a Sentinel has a "requirepass" configuration
      statemnet set to "foo", it will use the "foo" password to authenticate
      with every other Sentinel it connects to. So basically to add the
      "requirepass" to all the Sentinels configurations is enough in order to
      make sure that:
      
      1) Clients will require the password to access the Sentinels instances.
      2) Each Sentinel will use the same password to connect and authenticate
         with every other Sentinel in the group.
      
      Related to #3279 and #3329.
      fa675256
    • antirez's avatar
      Disable protected mode in Sentinel mode. · 666b3437
      antirez authored
      Sentinel must be exposed, so protected mode is just an issue for users
      in case Redis was started in Sentinel mode.
      
      Related to #3279 and #3329.
      666b3437