redis web端管理工具(go+vue)

2年前 (2022) 程序员胖胖胖虎阿
169 0 0

redis web端管理工具(go+vue) redis web端管理工具(go+vue)

介绍 [Introduction]

基于go+vue的web版redis管理工具【Web redis management tool based on golang and vue】

GITHUB地址

https://github.com/gphper/grm

功能清单

  • 管理连接(直连和SSH)、切换DB
  • 支持 string/list/set/zset/hash/stream 类型的增删查改
  • 编译打包成独立的二进制文件
  • 服务信息展示
  • 支持命令行
  • 用户鉴权
  • 操作日志
  • 支持LUA脚本

编译代码

  • web目录下
    npm run build
  • grm目录下
    go build -ldflags "-s -w" .\main.go
  • 推荐使用upx再次压缩
    upx -9 main.exe -o grm.exe

用户管理

  • 添加用户 grm user add
  • 删除用户 grm user delete

运行项目

  • 执行 grm run -H ip地址 -p ip端口
  • 访问地址 http://ip地址:ip端口/static/#/

Nginx反向代理

server {
      listen       80;
      server_name  www.xxx.com;

      location / {
            proxy_pass http://host:port;
          proxy_http_version 1.1;
          proxy_set_header Upgrade $http_upgrade;
          proxy_set_header Connection "Upgrade";
      }
}

持续更新中。。。

登录

redis web端管理工具(go+vue)

服务管理

redis web端管理工具(go+vue)

数据展示

redis web端管理工具(go+vue)

Terminal

redis web端管理工具(go+vue)

添加数据

redis web端管理工具(go+vue)

LUA脚本

redis web端管理工具(go+vue)

系统设置

redis web端管理工具(go+vue)

支持作者

如果觉得这个项目对你有帮助的话,请留下一颗star ⭐⭐鼓励一下!
If the project is helpful to you, please give a star to encourage me

版权声明:程序员胖胖胖虎阿 发表于 2022年11月7日 上午3:56。
转载请注明:redis web端管理工具(go+vue) | 胖虎的工具箱-编程导航

相关文章

暂无评论

暂无评论...