有多種方法可以查看nginx服務是否運行:
使用命令行:
$ systemctl status nginx
> tasklist /fi "imagename eq nginx.exe"
使用瀏覽器:
使用nginx命令:
$ nginx -t
nginx: configuration file /etc/nginx/nginx.conf test is successful
使用進程查看工具:
ps aux | grep nginx
來查看nginx進程是否存在。上述方法中,常用的是使用命令行的方式來檢查nginx服務是否運行。