Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

houjinkai 2020-05-19

一:Centos7Yum安装配置指定版本nginx

1、安装

rpm -ivh http://nginx.org/packages/centos/7/x86_64/RPMS/nginx-1.16.1-1.el7_4.ngx.x86_64.rpm

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

 2、启动 并验证

 启动命令systemctl start nginx 

验证命令curl http://127.0.0.1:80

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

 3、nginx版本

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

4、nginx配置文件路径

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

 5、nginx日志文件路径

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

 6、设置开机启动

systemctl enable nginx

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

7、常用命令

// 服务状态
# systemctl status nginx
// 服务启动
# systemctl start nginx
// 服务停止
# systemctl stop nginx
// 服务重启
# systemctl restart nginx

二、卸载Centos7Yum安装的nginx

1、停止nginx软件

service nginx stop

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

 2、删除nginx的自动启动

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

 3、从源头删除nginx

rm -rf /usr/sbin/nginx
rm -rf /etc/nginx
rm -rf /etc/init.d/nginx

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

 4、使用yum清理

yum remove nginx

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

 5、查找删除一些残留文件

Centos7Yum安装配置指定版本nginx及卸载Centos7Yum安装的nginx

 

 

相关推荐

lwplvx / 0评论 2020-11-22
岁月如歌 / 0评论 2020-07-21