CentOS中安装卸载Nginx

  • 这里使用的centOS7 
    • 1.用yum命令安装Nginx
    • 如果报错说找不到则运行 命令:sudo yum install epel-release  安装nginx存储库
yum -y install nginx
  • 2.启动nginx服务
systemctl start nginx
  • 3.设置防火墙(如果防火墙关闭可直接跳过)
1.允许http通信、
firewall-cmd --permanent --zone=public --add-service=http

2.允许https通信
firewall-cmd --permanent --zone=public --add-service=https

3.重启防火墙
firewall-cmd --reload
  • 系统启动时启动Nginx
systemctl enable nginx
  • 访问主机地址出现 Welcome …… 表示成功



  • 卸载Nginx服务

    • 1.停止Nginx

service nginx stop
  • 2.删除Nginx的自动启动
chkconfig nginx off
  • 3.从源头删除Nginx
rm -rf /usr/sbin/nginx
rm -rf /etc/nginx
rm -rf /etc/init.d/nginx
  • 4.再使用yum清理
  • yum remove nginx

     

你可能感兴趣的:(CentOS中安装卸载Nginx)