前提・実現したいこと
apache2 + wsgi + flaskでpython webアプリケーションの開発をしています。
そのアプリケーションに対して負荷試験を実施しているのですが、ログを見ていると
「Unable to connect to WSGI daemon process 'sample' on '/var/run/wsgi.40.0.1.sock' after multiple attempts as listener backlog limit was exceeded or the socket does not exist.」
というエラーが発生しており、原因がわからない状態です。
どのようにすればこのエラーが出ないようになりますでしょうか?
エラー内容
[Mon Oct 29 01:46:05.259622 2021] [wsgi:error] [pid 72:tid 139942462019328] (11)Resource temporarily unavailable: [client *.*.*.*:*] mod_wsgi (pid=72): Unable to connect to WSGI daemon process 'sample' on '/var/run/wsgi.42.0.1.sock' after multiple attempts as listener backlog limit was exceeded.
wsgi.confの中身
WSGISocketPrefix /var/run/wsgi
<VirtualHost *:443>
...
WSGIDaemonProcess sample user=apache group=apache processes=5 threads=4 home=sample lang=en_US.UTF-8 display-name=sample
WSGIScriptReloading Off
WSGIChunkedRequest On</VirtualHost>...
あなたの回答
tips
プレビュー