# GoRedisManager
redis 客户端管理平台(redis manager)【部署简单便捷,SSH连接,用户校验,操作日志等】。欢迎star!!
![redis-login.JPG](https://static.studygolang.com/211119/013cb36705068f945f29b166712a196b.JPG)
![index2.JPG](https://static.studygolang.com/211119/32c19928267d779986a375f2b49fa4e0.JPG)
## 功能清单
* 管理连接、切换DB
* 支持 string 类型
* 支持 list 类型
* 支持 set 类型
* 支持 zset 类型
* 支持 hash 类型
* 支持 stream 类型
* SSH连接redis
* 用户登录
* 操作日志
* 分页加载key值
## 演示地址
http://122.152.196.83:8060/index admin 123456
## 使用文档
- [开始使用](#开始使用)
- [配置文件](#配置文件)
### <a name="开始使用">开始使用</a>
```shell
-c string
配置文件路径 (default "./config.yaml")
```
```
默认访问地址:http://127.0.0.1:8088/index
```
### <a name="配置文件">配置文件</a>
```yaml
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"
```
- 授权协议:
- Apache
- 开发语言:
- golang 查看源码»
- 操作系统:
- windows,linux