GoRedisManager

redis 客户端治理平台(redis manager)【部署简略便捷,SSH连贯,用户校验,操作日志等】

性能清单

  • 治理连贯、切换DB
  • 反对 string 类型
  • 反对 list 类型
  • 反对 set 类型
  • 反对 zset 类型
  • 反对 hash 类型
  • 反对 stream 类型
  • SSH连贯redis
  • 用户登录
  • 操作日志

我的项目地址

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

应用文档

  • 开始应用
  • 配置文件

开始应用

-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.1port: "8088"#启用用户登录验证 不须要此性能则将 accounts 数据块正文掉即可accounts:- account: "admin"  password: "123456"