美文网首页
ubuntu 卸载安装nginx

ubuntu 卸载安装nginx

作者: 潇豪 | 来源:发表于2020-08-19 23:54 被阅读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

相关文章

网友评论

      本文标题:ubuntu 卸载安装nginx

      本文链接:https://www.haomeiwen.com/subject/dcujjktx.html