1.安装gcc环境,因为nginx是用c语言开发的,编译依赖gcc环境
yum install gcc-c++ -y
2.安装nginx依赖的三个类库
2.1安装PCRE库
PCRE(Perl Compatible Regular Expressions)是一个 Perl 库,包括 perl 兼容的正则表达式库。nginx 的 http 模块使用 pcre 来解析正则表达式,所以需要在 linux 上安装 pcre 库。
yum install -y pcre pcre-devel
2.2安装zlib库
zlib 库提供了很多种压缩和解压缩的方式,nginx 使用 zlib 对 http 包的内容进行 gzip,所以需要在 linux 上安装 zlib 库。
2.3安装openssl库
OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及 SSL 协议,并提供丰富的应用程序供测试或其它目的使用。 nginx 不仅支持 http 协议,还支持 https(即在 ssl 协议上传输 http),所以需要在 linux 安装 openssl 库。
3.通过ftp工具将 nginx-X.X.X.tar.gz 拷贝至 linux 服务器。
4.解压并进入解压后的文件夹
tar -zxvf nginx-1.8.0.tar.gz cd nginx-X.X.X
cd nginx-X.X.X
5.之后进行配置(在1.10.1版本后可以直接默认配置)或自定义配置
自定义配置
./configure
自定义配置
./configure \
--prefix=/usr/local/nginx \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi
6.接下来编译安装
make
make install
如果这一步出现下面的错误
按照提示创建client目录即可
mkdir -p /var/temp/nginx/client
7.安装完成,接下来可以启动nginx了
启动命令
cd /usr/local/nginx/sbin/
./nginx
注意:执行./nginx 启动 nginx,这里可以-c 指定加载的 nginx 配置文件,如下:
./nginx -c /usr/local/nginx/conf/nginx.conf
如果不指定-c,nginx 在启动时默认加载 conf/nginx.conf 文件,此文件的地址也可以在编译安装 nginx 时指定./configure 的参数(–conf-path= 指向配置文件(nginx.conf))
停止命令
cd /usr/local/nginx/sbin
./nginx -s quit