centos 7 源码包安装卸载nginx

Posted 传VV说

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 7 源码包安装卸载nginx相关的知识,希望对你有一定的参考价值。

1、源码包安装之前,首页安装依赖包

yum -y install gcc gcc-c++ make libtool zlib zlib-devel openssl openssl-devel pcre pcre-devel

2、去nginx官网去下载稳定版安装包

wget http://nginx.org/download/nginx-1.14.2.tar.gz

3、解压缩

tar -zxvf nginx-1.14.2.tar.gz

3、编译安装

cd nginx-1.14.2

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre

make && make install

4、nginx相关命令

/usr/local/nginx/sbin/nginx # 启动

/usr/local/nginx/sbin/nginx -s stop #停止

/usr/local/nginx/sbin/nginx -s reload #重新加载配置

5、将nginx加入环境变量

vim /etc/profile

export NGINX_HOME=/usr/local/nginx

export PATH=$PATH:$NGINX_HOME/sbin

6、检测nginx安装

nginx -v # 命令检测

http://服务器ip # 网页检测

网页检测可能失败,因为防火墙

7、关闭防火墙

systemctl start firewalld #启动

systemctl stop firewalld #关闭

systemctl status firewalld  #查看状态

systemctl disable firewalld # 开机禁用 

systemctl enable firewalld #开机启用

以上是关于centos 7 源码包安装卸载nginx的主要内容,如果未能解决你的问题,请参考以下文章

原创:Centos 7 源码编译安装 Nginx 1.13

Centos 7 Nginx+Keepalived+Tomcat 源码安装与运用

Centos 7.4 源码 Nginx 安装

Centos 7.x 源码搭建Nginx

2022年超详细在CentOS 7上安装Nginx方法(源码安装)

在CentOS 7.2上编译安装Nginx 1.13.6