Linux Nginx安装yum版
1 卸载已安装nginx
步骤1:检查本地没有安装nginx
说明没有安装。
如果有安装且运行服务,需先停止服务再卸载。
步骤2:停止服务
检查服务是否在运行
systemctl status nginx
如果是在Active状态,需要停止服务。
systemctl stop nginx
步骤3:卸载
yum -y remove nginx
2 安装nginx
因为yum默认源中不包含nginx,需要添加nginx官方提供的源。
步骤1:添加nginx源
rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
步骤2:yum命令安装
yum -y install nginx
安装版本为1.24.0 。
3 启动服务
systemctl start nginx
CentOS中通过FireFox浏览器访问
localhost
nginx网页访问成功。
4 nginx卸载
首先停止服务
systemctl stop nginx
yum命令卸载
yum -y remove nginx