彻底删除CentOS上的Nginx

时间:2025-01-24 10:03:03

删除使用yum安装的nginx方法

1.停止Nginx软件

[root@localhost ~]# service nginx stop

2.删除Nginx的自动启动

[root@localhost ~]# chkconfig nginx off

3.从源头删除Nginx

[root@localhost ~]# rm -rf /usr/sbin/nginx
[root@localhost ~]# rm -rf /etc/nginx
[root@localhost ~]# rm -rf /etc//nginx

4.再使用yum清理

  [root@localhost ~]# yum remove nginx

结束。