JIYIK CN >

Current Location:Home > Learning > NETWORK >

How to fix Response Status 0 Worker Process Exited on Signal 11 in Nginx

Author:JIYIK Last Updated:2025/03/17 Views:

Actually, let's clarify something first: HTTP does not have status code 0 (zero). The problem is that the nginx worker process died while handling the request, so the connection was broken, resulting in an error without any response data.

question

We have encountered this problem in various situations:

  • Github Webhooks : The webhook request was not completed successfully, and the response code is always 0
  • Piwik : We were unable to open the Piwik web control panel in Safari, nor were we able to add connection details on Android. Requests in both cases resulted in an error response with status 0.

Since we can't find any application errors in Strider and Piwik logs, the problem should be in the next layer: nginx.

We checked the nginx error log file and finally found a clue.

This is the default nginx error log file location on Ubuntu:/var/log/nginx/error.log

Error log file data:

2022/05/10 09:37:34 [alert] 7955#0: worker process 9835 exited on signal 11 (core dumped)  
2022/05/10 09:37:36 [alert] 7955#0: worker process 9853 exited on signal 11 (core dumped)  
2022/05/10 09:37:36 [alert] 7955#0: worker process 9855 exited on signal 11 (core dumped)  
2022/05/106 09:42:34 [alert] 7955#0: worker process 9857 exited on signal 11 (core dumped)  

If anyone is interested, we use nginx version 1.8.0 .


Workaround

To fix this problem, you need to modify the nginx configuration and add the following line in the http block.

The default location of the nginx configuration file on Ubuntu is /etc/nginx/nginx.conf

http {  
    …
    ssl_session_cache    shared:SSL:10m;
    …
}

Nginx uses multiple worker processes to handle the requests it receives. ssl_session_cache shared:SSL:10mMake nginx share session information between all worker processes. From now on, each worker process has session information available and will not stop executing requests due to lack of request data.

Don't forget to restart the nginx service.

$ sudo service nginx restart  

That's it. Our requests will flow through nginx to the application and vice versa without a problem!

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

PHP+ajax to achieve cross-domain single sign-on

Publish Date:2025/03/16 Views:145 Category:NETWORK

We have previously introduced the principle of cross-domain single sign-on in "Detailed explanation of the implementation methods of three situations of SSO single sign-on" . Here we will introduce how to implement single sign-on using PHP

WeChat public account development tutorial to obtain access_token

Publish Date:2025/03/16 Views:65 Category:NETWORK

During the development of WeChat official accounts, if we want to actively push messages to the WeChat server, we must have access_token. Access_token is the only ticket for the official account. When we develop and call various WeChat inte

WeChat public account receiving message event message processing

Publish Date:2025/03/16 Views:79 Category:NETWORK

As we know, there are two types of messages generated by the interaction between WeChat users and public accounts: one is ordinary messages, which are introduced in detail in the article "Ordinary message processing for WeChat public accoun

IE's Ajax cross-domain issue

Publish Date:2025/03/16 Views:190 Category:NETWORK

Ajax is widely used in web systems, but cross-domain issues are often encountered in web systems. By default, browsers prohibit Ajax cross-domain access. The IE browser has particularly strict restrictions. For browsers such as Firefox, Goo

How to redirect a website from HTTP to HTTPS

Publish Date:2025/03/16 Views:117 Category:NETWORK

HTTPS is a protocol for secure communication over computer networks and is widely used on the Internet. More and more website owners are migrating from HTTP to HTTPS, mainly due to the following 5 reasons: Google announced that websites usi

How to Fix the “SSL Handshake Failed” Error (5 Methods)

Publish Date:2025/03/16 Views:96 Category:NETWORK

Installing a Secure Sockets Layer (SSL) certificate on your WordPress site enables it to use HTTPS for a secure connection. Unfortunately, there are a lot of things that can go wrong in the process of verifying a valid SSL certificate and e

10 Ways to Fix NET::ERR_CERT_DATE_INVALID Error

Publish Date:2025/03/16 Views:136 Category:NETWORK

Having an SSL certificate gives people more peace of mind when using your website. When the NET::ERR_CERT_DATE_INVALID error indicates a problem with the certificate, it blocks visitors from accessing your website until the problem is fixed

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial