CentOS7 nginx安装与卸载
Posted 98kkkkkkkkkk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7 nginx安装与卸载相关的知识,希望对你有一定的参考价值。
一、安装
1.1 添加nginx存储库
要添加CentOS EPEL仓库,终端使用yum命令安装,直接复制执行:
- yum -y install epel-release
1.2 安装Nginx
现在Nginx存储库已经安装在您的服务器上,使用以下yum
命令安装Nginx :
- yum -y install nginx
1.3 启动Nginx
Nginx不会自动启动.要运行Nginx,请输入:
- systemctl start nginx
1.4 设置防火墙
- ## 允许http通信
- firewall-cmd --permanent --zone=public --add-service=http
- ## 允许https通信
- firewall-cmd --permanent --zone=public --add-service=https
- ## 重启防火墙
- firewall-cmd --reload
1.5 测试
浏览器里键入你的主机地址
如果看到这个页面,那么你的Web服务器现在已经正确安装了。
如果想在系统启动时启用Nginx。请输入以下命令:
- systemctl enable nginx
恭喜你!!! 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
推荐:锌闻网
以上是关于CentOS7 nginx安装与卸载的主要内容,如果未能解决你的问题,请参考以下文章
Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx