服务器之各种压力测试-网络、硬盘、rocketmq等

运维背锅侠--清风木 / 2023-04-28 / 原文

网络测试-iperf

安装工具
yum install iperf -y
服务端
iperf -s -p 12345 -i 1 -M
客户端
iperf -c 服务端ip -p 12345 -i 1 -t 50 -w 20K

结果如下:
image

硬盘测试 hdparm

安装工具
yum install hdparm -y
测试读硬盘
hdparm -t --direct /dev/sdc
image

测试写硬盘
sync;time -p bash -c "(dd if=/dev/sdc of=test.dd bs=1M count=20000)"
image