What is the method to start and stop nginx in Linux system

WBOY
Release: 2023-05-19 09:34:05
forward
5501 people have browsed it

What is the method to start and stop nginx in Linux system

Startup

Startup code format: nginx installation directory address -c nginx configuration file address

For example:

 [root@LinuxServer sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
Copy after login

Stop

There are three ways to stop nginx:

  • Stop calmly

1. Check the process number

 [root@LinuxServer ~]# ps -ef|grep nginx
Copy after login
Copy after login

What is the method to start and stop nginx in Linux system

 2. Kill the process

 [root@LinuxServer ~]# kill -QUIT 2072
Copy after login

What is the method to start and stop nginx in Linux system

  • ##Quick stop

1. Check the process number

 [root@LinuxServer ~]# ps -ef|grep nginx
Copy after login
Copy after login

What is the method to start and stop nginx in Linux system

2. Kill the process

 [root@LinuxServer ~]# kill -TERM 2132
 或 [root@LinuxServer ~]# kill -INT 2132
Copy after login

What is the method to start and stop nginx in Linux system

  • Force stop

  •  [root@LinuxServer ~]# pkill -9 nginx
    Copy after login
    Restart

    1. Verify whether the nginx configuration file is correct

    Method 1: Enter the nginx installation directory sbin and enter the command ./nginx - t
    See the following display nginx.conf syntax is ok

    nginx.conf test is successful

    It means the configuration file is correct!

    What is the method to start and stop nginx in Linux system

    Method 2: Add -t before the start command -c

    What is the method to start and stop nginx in Linux system

    2. Restart the Nginx service

    Method 1: Enter the nginx executable directory sbin and enter the command ./nginx -s reload

    What is the method to start and stop nginx in Linux system

    Method 2: Find the current nginx process number and enter Command: kill -HUP process number to restart nginx service

    What is the method to start and stop nginx in Linux system

    The above is the detailed content of What is the method to start and stop nginx in Linux system. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!