○Apacheのエラーログを確認
# tail /var/log/httpd/error_log
[Mon Sep 20 20:41:11.696658 2021] [proxy_fcgi:error] [pid 139115:tid 140257685120768] (70007)The timeout specified has expired: [client 182.167.223.71:58268] AH01075: Error dispatching request to : (polling), referer: https:〜〜〜〜〜〜〜〜
Apacheのエラーログを確認します。
ここに答えがありました。
The timeout specified has expired
Error dispatching request to : (polling), referer
○解決していく
php-fpmの再起動をする
# service php-fpm restart
php-fpmとは?
php-fpmの設定ファイルの修正
php-fpmの設定ファイルです。
/etc/php-fpm.d/www.conf
- pm.max_spare_servers = 35
+ pm.max_spare_servers = 10
アイドル状態でプーリングしているプロセス数の最小値を意味します。
こちらを、35➡️10
に変更。
その後、ConoHa VPSのサーバーを再起動すると速度が戻りました。