首页
Linux教程
MongoDB教程
FTP教程
Apache教程
Nginx
jQuery
Redis
MySQL
PostgreSQL教程
PHP教程
Elasticsearch

Nginx

目录
Nginx维护
Nginx 日志文件

查看服务器是否安装了Nginx


Linux每个应用运行都会产生一个进程,
可以通过查看Nginx进程是否存在来判断它是否启动。
用ps -ef列出进程列表,然后通过grep过滤。

[root@text ~]# ps -ef | grep nginx
root     3077     1  0  Jan01 ?         00:00:00 nginx: master process /usr/sbin
nginx -c /etc/nginx/nginx.conf
nginx 3078 3077 0 Jan01 ? 00:08:40 nginx: worker process
root 6072 6047 0 08:34 pts/0 00:00:00 grep --color=auto nginx