Redis Control Panel

Is there a standard or de facto standard GUI admin panel for Redis? I would like to see the general state and condition of my Redis instances via the web interface. Advanced things, such as access to magazines, memory usage trends, etc., would be nice but not necessary. I am running Redis in a Hadoop cluster in which I like to have pages for JobTracker, NameNode, Ganglia, etc.

There are a few things, but at first glance they do not seem ready for prime time.

+72
redis
Oct 10 '11 at 17:29
source share
8 answers

I am a big fan of Redis-Commander

+36
01 Oct '12 at 2:16
source share

If you prefer open source desktop tools , also see Redis Desktop Manager .

It is an open source cross-platform Redis database management tool (i.e. admin GUI)

enter image description here

+22
Nov 28 '13 at 12:32
source share

Try Redsmin ( detailed description here ). Its GUI is completely online for Redis, which provides many features.

He currently offers:

  • No installation and cross-platform
  • Multiple database management (with direct or proxy access)
  • Keys tree and list view (with optional real-time update )
  • Batch operation on multiple keys that match a pattern
  • Data editor
  • LUA Editor

LUIS Editor

  • Redis Cluster Monitoring
  • Online configuration (with support for team support )

  • JavaScript API directly accessible from the browser console for easy data processing

Redis JavaScript API

  • Monitoring functions
  • Auto-complete online terminal and integrated documentation
  • Real-time data visualization (bar graph, pie, ...)
  • Monitoring (and early warning)

enter image description here

enter image description here

view? id = AAIAAAD-U-% 0AYBJN9lpixm6nxrnAaHQY5DoZ0FcNQ & trk = nav_responsive_tab_profile

+14
Nov 18 '12 at 23:19
source share

I have been running Redmon for several days and it does a good job of real-time redis graphics memory usage and key space, activity in the web interface with CLI to enter redis commands. This is a Ruby application that was very easy to run after installing the dependencies.

+12
Sep 10 '12 at 23:25
source share

redis-cli info contains a lot of information about the health of a redis instance. Formatting its output for easier digestion should not be too complicated.

+8
Nov 23 '11 at 5:31
source share

You can also try phpredmin . It provides simple statistics about your redis and dashboards for managing databases and keys.

+6
Feb 16 '13 at 14:14
source share

I just found another redis program for the administrator, one file that is very easy to configure (I had to change the redis autoloader in line 60 of the program). It is simple, but enough!

code.google.com/p/php-redis-browser

+3
Jul 03 2018-12-12T00:
source share

There is also a RedWeb project. It is written in Python and built on the basis of the Micro-framework Bottle.

+3
Jul 17 '12 at 6:22
source share



All Articles