php中文网

linux怎么查看nginx是否启动

php中文网

如何检查 linux 中的 nginx 是否已启动

在 Linux 系统中,可以使用以下命令来检查 Nginx 是否正在运行:

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 Fri 2023-02-10 16:23:48 PST; 4 days ago
 Main PID: 2964 (nginx)
   CGroup: /system.slice/nginx.service
           ├─2964 nginx: master process /usr/sbin/nginx -g daemon off;
           └─2965 nginx: worker process

如果 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: inactive (dead) since Fri 2023-02-10 16:23:48 PST; 4 days ago
 Main PID: 2964 (code=exited, status=0/SUCCESS)

输出解释:

  • Loaded: 指示 nginx 服务是否已加载到系统中。
  • Active: 指示 nginx 服务当前是否正在运行。
  • Main PID: 显示 nginx 主进程的进程 ID。
  • CGroup: 指示 nginx 进程所属的控制组。

如果您看到 "Active: inactive (dead)" 消息,则表示 Nginx 已停止。如果您看到 "Active: active (running)" 消息,则表示 Nginx 正在运行。

以上就是linux怎么查看nginx是否启动的详细内容,更多请关注php中文网其它相关文章!