博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu完全删除nginx
阅读量:5010 次
发布时间:2019-06-12

本文共 757 字,大约阅读时间需要 2 分钟。

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

sudo apt-get --purge remove nginx 

2.移除全部不使用的软件包

sudo apt-get autoremove 

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

dpkg --get-selections|grep nginx

sudo apt-get --purge remove nginx

sudo apt-get --purge remove nginx-common

sudo apt-get --purge remove nginx-core 

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

ps -ef |grep nginx 

sudo kill -9 XXX

5.全局查找与nginx相关的文件

sudo  find  /  -name  nginx*

sudo rm -rf file 

6.删除列出的所有文件

sudo rm -rf file 

7.重装nginx

sudo apt-get update

sudo apt-get install nginx 

nginx的其他内容 

测试nginx配置是否正确

sudo nginx -t

nginx 重启

sudo service nginx restart

 

  nginx: [emerg] a duplicate default server for 0.0.0.0:80 in /etc/nginx/sites-enabled/ms.recipe_box.com.conf:2

删除/etc/nginx/sites-available/default文件,重新启动服务即可

转载于:https://www.cnblogs.com/felixwang2/p/9401833.html

你可能感兴趣的文章
scss常规用法
查看>>
css定位position属性深究
查看>>
android中不同版本兼容包的区别
查看>>
Static 与 new 的问题【待解决】
查看>>
xml
查看>>
在 mvc4 WebApi 中 json 的 跨域访问
查看>>
敏捷开发文章读后感
查看>>
xposed获取context 的方法
查看>>
html5 canvas 图像处理
查看>>
He who hesitates is Lost
查看>>
php中引用&的真正理解-变量引用、函数引用、对象引用
查看>>
关于<form> autocomplete 属性
查看>>
OutOfMemory
查看>>
LeetCode:组合总数III【216】
查看>>
Thinkphp框架回顾(三)之怎么实现平常的sql操作数据库
查看>>
虚函数的效率问题
查看>>
POJ 1860 Currency Exchange(SPFA 判断有无“正”环)
查看>>
广告地址屏蔽
查看>>
收缩SqlServer数据库日记方法
查看>>
每日英语:15 places to find inspiration
查看>>