让服务器重负载进行测试

发布于 2024-11-09 01:53:13 字数 110 浏览 0 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

微凉 2024-11-16 01:53:14

如果你想强制占用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

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 :

for cpu in 1 2 ; do
   ( while true; do true; done ) &
done

If you want to simualte IO charge too, try with this :

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

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

渡你暖光 2024-11-16 01:53:14

如果您正在寻找生成CPU使用率,那么您必须选择CPU密集型命令。
例如生成随机数。

试试这个:

dd if=/dev/urandom of=/dev/null

为每个 CPU 核心添加这些行。如果您使用双核 CPU:使用

dd if=/dev/urandom of=/dev/null &
dd if=/dev/urandom of=/dev/null &

以下命令检查作业

jobs

使用以下命令结束作业
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:

dd if=/dev/urandom of=/dev/null

Add on of those line for every CPU core. If you have an dual-core CPU use:

dd if=/dev/urandom of=/dev/null &
dd if=/dev/urandom of=/dev/null &

Check the jobs with

jobs

End the jobs with
kill %1 (where %1 is the number of job 1)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文