码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS7 nginx安装与卸载

时间:2020-07-21 23:08:56      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:成功   测试   move   targe   启用   system   重启   运行   yum命令   

一、安装

1.1 添加Nginx存储库

 要添加CentOS EPEL仓库,终端使用yum命令安装,直接复制执行:

  1.  yum -y install epel-release

1.2 安装Nginx

 现在Nginx存储库已经安装在您的服务器上,使用以下yum命令安装Nginx :

  1. yum -y install nginx

1.3 启动Nginx

Nginx不会自动启动.要运行Nginx,请输入:

  1. systemctl start nginx

1.4 设置防火墙

  1. ## 允许http通信
  2. firewall-cmd --permanent --zone=public --add-service=http
  3. ## 允许https通信
  4. firewall-cmd --permanent --zone=public --add-service=https
  5. ## 重启防火墙
  6. firewall-cmd --reload

1.5 测试

浏览器里键入你的主机地址

技术图片

如果看到这个页面,那么你的Web服务器现在已经正确安装了。

如果想在系统启动时启用Nginx。请输入以下命令:

  1. systemctl enable nginx

恭喜你!!! Nginx现在已经成功安装并允许了!!

二 . 卸载

1 停止Nginx软件

  1. service nginx stop

2 删除Nginx的自动启动

  1. chkconfig nginx off

3 从源头删除Nginx

  1. rm -rf /usr/sbin/nginx
  2. rm -rf /etc/nginx
  3. rm -rf /etc/init.d/nginx

4 再使用yum清理

  1. yum remove nginx

推荐:锌闻网

CentOS7 nginx安装与卸载

标签:成功   测试   move   targe   启用   system   重启   运行   yum命令   

原文地址:https://www.cnblogs.com/98kkkkkkkkkk/p/13357130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!