Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redis administration panel [closed]

Tags:

redis

Is there a standard or de facto standard GUI administration panel for Redis? I'd like to see general health and status of my Redis instances through a web interface. Advanced stuff such as access to logs, trends on memory usage, etc. would be nice but not necessary. I'm running Redis on a Hadoop cluster, in which I enjoy having pages for the JobTracker, NameNode, Ganglia, etc.

There are a few out there, but at first glance they don't seem ready for prime time.

  • http://www.servicestack.net/mythz_blog/?p=381
  • http://code.google.com/p/redis-admin/
like image 296
Donald Miner Avatar asked Oct 10 '11 17:10

Donald Miner


People also ask

Does Redis have GUI?

Redis Desktop Manager: Cross-Platform, Pure Desktop GUI It's freely available under the MIT LGPL license. Like most other Redis GUIs, it allows you to connect simultaneously to multiple Redis databases or instances, inspect and modify your data and use an interactive terminal.

What if Redis server goes down?

When Redis goes down, you have to deal with it. It is the same as if your file system is gone or your SQL Server is down. A lot of those systems disable all writes and set their cluster in maintenance state.

How do I turn off Redis monitor?

Use SIGINT (Ctrl-C) to stop a MONITOR stream running via redis-cli .


2 Answers

I am a big fan of Redis-Commander

like image 101
Evan Avatar answered Sep 18 '22 21:09

Evan


Give a try to Redsmin (long description here). Its a fully online GUI for Redis that provides a lot of features.

It currently offers:

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

Redis LUA Editor

  • Redis Cluster monitoring
  • Online configuration (with command override support)

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

Redis JavaScript API

  • Monitoring features
  • Online terminal with auto-completion and inline-documentation
  • Real-time data-visualization (histogram, pie, ...)
  • Monitoring (and alerting soon)

enter image description here

enter image description here

like image 27
FGRibreau Avatar answered Sep 17 '22 21:09

FGRibreau