CentOS源码安装nginx

Posted higreen

tags:

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

//在线下载,或下载好后上传服务器

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

//解压

tar -zxvf nginx-1.14.0.tar.gz

//进入解压后的目录

cd nginx-1.14.0

//选择安装目录,编译安装

./configure --prefix=/usr/local/nginx

make && make install

 

#编译出错

./configure: error: the HTTP gzip module requires the xxx library.

安装 yum install xxx-devel -y

#启动出错

nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory)

创建文件 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

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

centos7 源码编译安装nginx教程 nginx安装脚本

centos7源码安装Nginx

centos 7 源码包安装卸载nginx

centos7 源码编译安装 nginx

CentOS源码安装nginx

Centos7.2 源码安装Nginx