Redis可视化工具

2022-10-07  本文已影响0人  码缘

介绍 [Introduction]

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

地址

https://github.com/gphper/grm

功能清单

编译代码

用户管理

运行项目

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";

      }

}

使用已有域名的Nginx配置


listen      80;

server_name  www.xxx.com;

location /grmapix/ {

    proxy_pass http://host:port;

    proxy_http_version 1.1;

    proxy_set_header Upgrade $http_upgrade;

    proxy_set_header Connection "Upgrade";

}

location ~ ^/grm/(.*) {

    proxy_pass http://host:port/$1;

}

持续更新中。。。

登录

[站外图片上传中...(image-c916fa-1665144212317)]

服务管理

[站外图片上传中...(image-4ae836-1665144212317)]

数据展示

[站外图片上传中...(image-86b376-1665144212317)]

Terminal

[站外图片上传中...(image-a6f6b-1665144212317)]

添加数据

[站外图片上传中...(image-8928fa-1665144212317)]

LUA脚本

[图片上传失败...(image-f93de2-1665144212317)]

系统设置

[站外图片上传中...(image-cb41fd-1665144212317)]

REDIS监控

[站外图片上传中...(image-d45335-1665144212317)]

支持作者

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

上一篇下一篇

猜你喜欢

热点阅读