当前位置: 首页 > ai >正文

Goreplay最新版本的安装和简单使用

一:概述

        Gor 是一个开源工具,用于捕获实时 HTTP 流量并将其重放到测试环境中,以便使用真实数据持续测试您的系统。它可用于提高对代码部署、配置更改和基础设施更改的信心。简单易用。

项目地址:buger/goreplay: GoReplay is an open-source tool for capturing and replaying live HTTP traffic into a test environment in order to continuously test your system with real data. It can be used to increase confidence in code deployments, configuration changes and infrastructure changes.https://github.com/buger/goreplay?tab=readme-ov-file

        GoReplay 提供了一种独特的阴影方法。GoReplay 不是代理,而是在后台侦听网络接口上的流量,无需更改生产基础设施,只需在与服务相同的计算机上运行 GoReplay 守护程序即可。

二:具体说明

        2.1 Golang环境安装以及配置

              去此页面  All releases - The Go Programming Language下载

这个是配置GO环境的,然后一开始那个项目地址可以下载最新的Goreplay的tar包。

        2.1.1 解压到/usr/local/soft/Go

tar -zxvf go1.24.3.linux-amd64.tar.gz && rm go1.24.3.linux-amd64.tar.gz

        2.1.2 配置环境变量

pwd
/usr/local/soft/Go/go
[root@localhost go]# vim /etc/profileexport GOROOT=/usr/local/soft/Go/go
export $PATH=$PATH:GOROOT/bin
# 编译生效
source /etc/profile

        配置完成之后,输入以下命令可以查看Golang的版本

[root@localhost go]# go version
go version go1.24.3 linux/amd64

       2.2 安装Goreplay 

                2.2.1 解压文件到/usr/local/soft/goreplay

tar -zxvf gor_1.3.3_x64.tar.gz && rm -f gor_1.3.3_x64.tar.gz[root@localhost goreplay]# ls
gor

2.3 测试案例

        2.3.1 利用python开启一个自带的http服务

python3.13 -m http.server

        前提是你已经安装了python

[root@localhost python]# python3.13 -m http.server
Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...

2.3.2重新开一个服务器窗口在/usr/local/soft/goreplay目录执行命令

./gor --input-raw :8000 --output-stdout

./gor --input-raw :8000 --output-file requests.log
./gor --input-raw  ip:8000 --output-file requests.log
./gor --input-file requests.log --output-http  http://ip:8000
[DEBUG][elapsed 338.732µs]: [INPUT-FILE] No files match pattern:  requests.log
2025/06/01 17:44:12 [PPID 118115 and PID 161981] Version:1.3.0

http://www.xdnf.cn/news/10355.html

相关文章:

  • asyncpg - Python异步PostgreSQL客户端库
  • 4、获取树莓派温度
  • Jenkins:自动化流水线的基石,开启 DevOps 新时代
  • 【Linux网络编程】数据链路层
  • 6个月Python学习计划 Day 11 - 列表推导式、内置函数进阶、模块封装实战
  • 让编程更智能高效:探索Claude Code工具的强大功能
  • Qt源码分析:QDataStream
  • 多模态大语言模型arxiv论文略读(103)
  • 功能丰富的PDF处理免费软件推荐
  • 设计模式——命令设计模式(行为型)
  • while循环判断数字位数
  • Axure组件即拖即用:垂直折叠菜单(动态展开/收回交互)
  • day16 leetcode-hot100-31(链表10)
  • DAY40 训练和测试
  • Vue 核心技术与实战智慧商城项目Day08-10
  • 麦克风和电脑内播放声音实时识别转文字软件FunASR整合包V5下载
  • 关于langchain使用API加载model的方式
  • Java并发编程实战 Day 3:volatile关键字与内存可见性
  • C++学习-入门到精通【12】文件处理
  • 工作流引擎-09-XState 是一个 JavaScript 和 TypeScript 的状态管理库,它使用状态机和状态图来建模逻辑。
  • Hilbert曲线
  • 在Flutter中定义全局对象(如$http)而不需要import
  • vue3: baidusubway using typescript
  • MYOJ_4149:(洛谷P1002)[NOIP 2002 普及组] 过河卒(坐标型DP)
  • 在Mathematica中可视化Root和Log函数
  • 实现RabbitMQ多节点集群搭建
  • 前端框架进化史
  • Git仓库大文件清理指南
  • LangChain-结合GLM+SQL+函数调用实现数据库查询(二)
  • Spring如何实现组件扫描与@Component注解原理