2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【1分解説】Apacheの同時接続数上限の変更方法

Last updated at Posted at 2019-11-30

はじめに

Apacheの同時接続数上限を変更する方法。

設定を確認しよう

$ less /etc/httpd/conf/httpd.conf
<IfModule prefork.c>
  StartServers 5
  MinSpareServers 5
  MaxSpareServers 10
  ServerLimit 256 ★
  MaxClients 256 ★
  MaxRequestsPerChild 10000
</IfModule>

ServerLimitとMaxClientsの値を大きくする

同時接続数上限を上げるには、ServerLimitとMaxClientsの値を大きくします。

設定反映

httpdサービスを再起動して設定を反映します。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?