优选主流主机商
任何主机均需规范使用

如何查看Nginx是否运行

有多种方法可以查看Nginx是否正在运行。以下是其中的一些:

  1. 使用systemctl命令检查Nginx服务状态:
sudo systemctl status nginx

如果Nginx正在运行,则应该看到类似于以下内容的输出:

● nginx.service - A high performance web server and a reverse proxy server
   Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
   Active: active (running) since Mon 2022-06-27 08:15:30 UTC; 10h ago
     Docs: man:nginx(8)
  Process: 11711 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
 Main PID: 11712 (nginx)
    Tasks: 2 (limit: 4915)
   Memory: 4.3M
   CGroup: /system.slice/nginx.service
           ├─11712 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
           └─11713 nginx: worker process

  1. 检查Nginx进程是否正在运行:
ps aux | grep nginx

如果Nginx正在运行,则应该看到类似于以下内容的输出:

root     11712  0.0  0.7 139780  3916 ?        Ss   Jun26   0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
www-data 11713  0.0  0.9 140376  4872 ?        S    Jun26   0:00 nginx: worker process
  1. 检查Nginx监听的端口:
sudo netstat -tulpn | grep nginx

如果Nginx正在运行,则应该看到类似于以下内容的输出:

tcp6       0      0 :::80                   :::*                    LISTEN      11712/nginx: maste

这表明Nginx正在监听80端口。

未经允许不得转载:搬瓦工中文网 » 如何查看Nginx是否运行