nginx 1.21.3 编绎安装 最新版 ubuntu
卸载
#删除nginx,–purge包括配置文件
sudo apt-get --purge remove nginx
#自动移除全部不使用的软件包
sudo apt-get autoremove
#罗列出与nginx相关的软件
dpkg --get-selections|grep nginx
#删除查询出与nginx有关的软件
sudo apt-get --purge remove nginx-common
#查看nginx正在运行的进程,如果有就kill掉
ps -ef |grep nginx
#kill nginx进程
sudo kill -9 7875 7876 7877 7879
#全局查找与nginx相关的文件
sudo find / -name nginx*
#依依删除列出的所有文件
sudo rm -rf file
安装nginx 依赖
#安装nginx 依赖
sudo apt-
共有 0 条评论