sudo service nginx stop
sudo apt-get --purge remove nginx
sudo apt-get autoremove
dpkg --get-selections|grep nginx
sudo apt-get --purge remove nginx
sudo apt-get --purge remove nginx-common
sudo apt-get --purge remove nginx-full
dpkg --get-selections|grep nginx
which nginx
1.启动Nginx
service nginx start
systemctl start nginx
2.停止Nginx
终止所有nginx系统进程
service nginx stop
systemctl stop nginx
快速终止进程
killall -9 nginx
3.退出Nginx
service nginx quit
systemctl quit nginx