📜  删除 nginx - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:22:42.388000             🧑  作者: Mango

删除 Nginx

若需要删除 Nginx,可根据以下步骤进行操作。

步骤
1. 停止 Nginx 服务

首先,需要终止正在运行的 Nginx 服务:

sudo systemctl stop nginx
2. 卸载 Nginx

接下来,卸载 Nginx:

sudo apt remove nginx nginx-common nginx-full nginx-core

如果以上命令不能正常工作,可以尝试以下命令:

sudo apt-get purge nginx nginx-common nginx-full nginx-core
3. 清理相关依赖

卸载 Nginx 后,需要清理相关依赖:

sudo apt autoremove
sudo apt autoclean
4. 删除相关文件

最后,需要删除配置文件和其他相关文件:

sudo rm -rf /etc/nginx /var/www/nginx
sudo rm -rf /etc/php/<VERSION>/fpm/conf.d/20-nginx.conf
总结

通过以上步骤,可以成功删除 Nginx。如有问题,请随时参考相关文档或咨询技术支持。