systemctl status nginx
时间: 2023-04-25 17:02:57 浏览: 670
nginx status
systemctl status nginx 的意思是查询 Nginx 服务的状态。可以通过以下命令来执行:
```
systemctl status nginx
```
执行该命令后,会显示 Nginx 服务的状态信息,包括运行状态、进程 ID、启动时间、日志信息等。如果 Nginx 服务正在运行,则会显示 active (running)。如果 Nginx 服务没有运行,则会显示 inactive (dead)。
阅读全文