一、安装准备
首先由于nginx的一些模块依赖一些lib库,所以在安装nginx之前,必须先安装这些lib库,这些依赖库主要有g++、gcc、openssl-devel、pcre-devel和zlib-devel 所以执行如下命令安装
[html] view plaincopy
- $ yum install gcc-c++
- $ yum install pcre pcre-devel
- $ yum install zlib zlib-devel
- $ yum install openssl openssl--devel
tips:Nginx官网提供了三个类型的版本
Mainline version:Mainline 是 Nginx 目前主力在做的版本,可以说是开发版
Stable version:最新稳定版,生产环境上建议使用的版本
Legacy versions:遗留的老版本的稳定版
二、安装Nginx
安装之前,最好检查一下是否已经安装有nginx
[html] view plaincopy
- $ find -name nginx
如果系统已经安装了nginx,那么就先卸载
[html] view plaincopy
- $ yum remove nginx
首先进入/usr/local目录
[html] view plaincopy
- $ cd /usr/local
从官网下载最新版的nginx
[html] view plaincopy
- $ wget http://nginx.org/download/nginx-1.7.4.tar.gz
解压nginx压缩包
[html] view plaincopy
- $ tar -zxvf nginx-1.7.4.tar.gz
会产生一个nginx-1.7.4 目录,这时进入nginx-1.7.4目录
[html] view plaincopy
- $ cd nginx-1.7.4
接下来安装,使用--prefix参数指定nginx安装的目录,make、make install安装
[html] view plaincopy
- $ ./configure
- $ make
- $ make install
安装Nginx时报错
./configure: error: the HTTP rewrite module requires the PCRE library.
安装pcre-devel解决问题
yum -y install pcre-devel
错误提示:./configure: error: the HTTP cache module requires md5 functions
from OpenSSL library. You can either disable the module by using
--without-http-cache option, or install the OpenSSL library into the system,
or build the OpenSSL library statically from the source with nginx by using
--with-http_ssl_module --with-openssl=<path> options.
解决办法:
yum -y install openssl openssl-devel
总结:
yum -y install pcre-devel openssl openssl-devel
./configure --prefix=/usr/local/nginx
make
make install
一切搞定
如果没有报错,顺利完成后,最好看一下nginx的安装目录
[html] view plaincopy
- $ whereis nginx
/usr/local/nginx/sbin/nginx
安装完毕后,进入安装后目录(/usr/local/nginx)便可以启动或停止它了。
到此,使用CentOS安装nginx已经完成了,其实看