ubuntu 卸载安装nginx

2020-08-19  本文已影响0人  潇豪

查看相关依赖

dpkg --get-selections|grep nginx

删除相关软件

sudo apt-get --purge remove nginx nginx-common nginx-core

删除nginx,-purge包括配置文件

apt-get --purge remove nginx

移除全部不使用的软件包

apt-get autoremove

罗列出与nginx相关的软件并删除

dpkg --get-selections|grep nginx
apt-get --purge remove nginx
apt-get --purge remove nginx-common
apt-get --purge remove nginx-core

查看nginx正在运行的进程,如果有就kill掉

ps -ef |grep nginx
kill -9 XXX

全局查找与nginx相关的文件

find / -name nginx*
rm -rf file

删除列出的所有文件

rm -rf file

重装nginx

apt-get update
apt-get install nginx

nginx的其他内容

nginx -t

nginx 重启

service nginx restart

上一篇 下一篇

猜你喜欢

热点阅读