linux – 将服务器置于高负载下进行测试

前端之家收集整理的这篇文章主要介绍了linux – 将服务器置于高负载下进行测试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在 Linux服务器上做一些测试,我需要服务器负载很重.我想知道如何模拟这个?现在服务器上升到20%的cpu,但我需要强制它到80%左右,并做一些测试,看看它是如何应对的.

解决方法

如果你想强制cpu占用,试试这个:
for cpu in 1 2 ; do
   ( while true; do true; done ) &
done

如果你想同时模拟IO充电,试试这个:

for cpu in 1 2 ; do
   ( while true; do find / -type f -exec cp {} /dev/null \; ; done ) &
done

for for cpu in 1 2 for 2 core,for cpu in 1 2 3 4 for 4 cores;)

原文链接:https://www.f2er.com/linux/394600.html

猜你在找的Linux相关文章