让服务器重负载进行测试
我正在 Linux 服务器上进行一些测试,并且我需要服务器承受较重的负载。我想知道如何模拟这个?现在服务器的 CPU 使用率高达 20%,但我需要将其强制达到 80% 左右,并进行一些测试以了解它如何应对。
I'm doing some testing on a Linux server and I need the server to be on a heavy load. I was wondering how I would simulate this? Right now the server goes upto 20% CPU but I need to force it to around 80% and do some testing to see how it copes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你想强制占用CPU,试试这个:
如果你也想模拟IO费用,试试这个:
with
for cpu in 1 2
for 2 cores,for cpu in 1 2 3 4
表示 4 核;)If you want to force CPU's occupation, try this :
If you want to simualte IO charge too, try with this :
with
for cpu in 1 2
for 2 cores,for cpu in 1 2 3 4
for 4 cores ;)如果您正在寻找生成CPU使用率,那么您必须选择CPU密集型命令。
例如生成随机数。
试试这个:
为每个 CPU 核心添加这些行。如果您使用双核 CPU:使用
以下命令检查作业
使用以下命令结束作业
kill %1
(其中 %1 是作业 1 的数量)If you are looking for generating cpu usage, so you have to choose commands, which are CPU intensive.
For example generation random-numbers.
Try this:
Add on of those line for every CPU core. If you have an dual-core CPU use:
Check the jobs with
End the jobs with
kill %1
(where %1 is the number of job 1)