nginx
nginx停止
nginx -v #查看nginx 版本
nginx #启动命令
nginx -s stop #关闭命令
nginx -s reload #重新加载命令
nginx -p `pwd`/ -c conf/nginx.conf #指定配置文件启动
nginx -p `pwd`/ -c conf/nginx.conf -s quit #nginx指定配置文件的,停止时也需指定参数
#查看nginx 监听了哪些端口
ps -ef | grep nginx
netstat -anp | grep ${pid} # pid 为上面查询出来的nginx进程号