Solutions to the failure and invalidity of opening nginx.pid

Solutions to the failure and invalidity of opening nginx.pid

1. Problem Description

When we use nginx normally, we may often find that our pid is not found or lost, which will lead to an error as follows:

nginx: [error] open() "/var/run/nginx/nginx.pid" failed (2: No such file or directory)

Or:

nginx: [error] invalid PID number "" in "/var/run/nginx/nginx.pid"

2. Problem Analysis

  • The nginx.pid file does not exist;
  • The directory where nginx.pid is located does not exist.

3. Solution

Solution 1: Create a directory

For the problem:

insert image description here

Try to enter the /var/run/nginx directory:

insert image description here

The directory configured by nginx.pid here is set when compiling nginx, so the specific directory to be detected depends on what directory you set when compiling:
You can view it through: nginx -V command

insert image description here

If the directory is not found, create it:

mkdir /var/run/nginx

Where to create the directory here depends on what directory you configured during compilation, just like above.

Try to enter the newly created directory to check whether it is created successfully:

cd /var/run/nginx

Enter the nginx installation directory:

cd /usr/local/nginx

Get the installation directory of nginx: whereis nginx

Solution 2: Re-assign a configuration file

For the problem:

insert image description here

Enter sbin:

cd /sbin

Re-specify an nginx.conf file:

./nginx -c /usr/local/nginx/conf/nginx.conf

Reload the configuration file

./nginx -s reload

Solution 3: Modify the default pid

Enter the conf directory:

cd ../conf

Modify the nginx.conf file and execute the new nginx.pid:

insert image description here

#pid logs/nginx.pid;

This is the end of this article about solutions to the failure to open nginx.pid and its invalidation. For more information about the failure to open nginx.pid, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solution to losing nginx.pid after restarting nginx
  • Solution to losing nginx.pid after restarting or killing Nginx process

<<:  A brief discussion on what situations in MySQL will cause index failure

>>:  HTTP header information interpretation and analysis (detailed summary)

Recommend

JavaScript code to achieve a simple calendar effect

This article shares the specific code for JavaScr...

CSS form validation function implementation code

Rendering principle In the form element, there is...

How to build a new image based on an existing image in Docker

Building new images from existing images is done ...

npm Taobao mirror modification explanation

1. Top-level usage 1. Install cnpm npm i -g cnpm ...

VMware installation of Centos8 system tutorial diagram (command line mode)

Table of contents 1. Software and system image 2....

LINUX Checks whether the port is occupied

I have never been able to figure out whether the ...

HTML table markup tutorial (48): CSS modified table

<br />Now let's take a look at how to cl...

Detailed explanation of linux crm deployment code

Linux basic configuration Compile and install pyt...

Nginx builds rtmp live server implementation code

1. Create a new rtmp directory in the nginx sourc...

CSS Sticky Footer Implementation Code

This article introduces the CSS Sticky Footer imp...

Why does your height:100% not work?

Why doesn't your height:100% work? This knowl...

IE8 compatibility notes I encountered

1. IE8's getElementById only supports id, not ...

Table setting background image cannot be 100% displayed solution

The following situations were discovered during d...

Explanation of the concept and usage of Like in MySQL

Like means "like" in Chinese, but when ...