Redis Web Ui管理工具

GoRedisManager

redis 客户端管理平台(redis manager)【部署简单便捷,SSH连接,用户校验,操作日志等】。欢迎star!!
login

index

项目地址

https://github.com/gphper/go-redis-manager

功能清单

  • 管理连接、切换DB

  • 支持 string 类型

  • 支持 list 类型

  • 支持 set 类型

  • 支持 zset 类型

  • 支持 hash 类型

  • 支持 stream 类型

  • SSH连接redis

  • 用户登录

  • 操作日志

使用文档

开始使用

-c string
        配置文件路径 (default "./config.yaml")
默认访问地址:http://127.0.0.1:8088/index

配置文件

connections:
# 不启动ssh的配置方法  
- servicename: localhost
  host: 127.0.0.1
  port: "6379"
  password: ""
  usessh: 0
  sshconfig:
    sshhost: ""
    sshport: ""
    sshusername: ""
    sshpassword: ""
# 启动ssh的配置方法     
- servicename: ceshi
  host: 127.0.0.1
  port: "6379"
  password: redispass
  usessh: 1
  sshconfig:
    sshhost: 127.0.0.1
    sshport: "2203"
    sshusername: root
    sshpassword: "123456"
hostname: 127.0.0.1
port: "8088"
#启用用户登录验证 不需要此功能则将 accounts 数据块注释掉即可
accounts:
- account: "admin"
  password: "123456"
原文地址:https://www.cnblogs.com/itsuibi/p/15580468.html