📅  最后修改于: 2023-12-03 15:22:42.388000             🧑  作者: Mango
若需要删除 Nginx,可根据以下步骤进行操作。
首先,需要终止正在运行的 Nginx 服务:
sudo systemctl stop nginx
接下来,卸载 Nginx:
sudo apt remove nginx nginx-common nginx-full nginx-core
如果以上命令不能正常工作,可以尝试以下命令:
sudo apt-get purge nginx nginx-common nginx-full nginx-core
卸载 Nginx 后,需要清理相关依赖:
sudo apt autoremove
sudo apt autoclean
最后,需要删除配置文件和其他相关文件:
sudo rm -rf /etc/nginx /var/www/nginx
sudo rm -rf /etc/php/<VERSION>/fpm/conf.d/20-nginx.conf
通过以上步骤,可以成功删除 Nginx。如有问题,请随时参考相关文档或咨询技术支持。