nginx1.6.2编译安装

1、安装依赖包

yum install gcc openssl* pcre* zlib* libgd gd gd-devel

2、创建nginx用户

groupadd nginx

useradd -g nginx -d /usr/local/nginx

3、下载fair模块(http://wiki.nginx.org/HttpUpstreamFairModule)

wget gnosek-nginx-upstream-fair-a18b409.tar

4、编译

./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_spdy_module --with-http_stub_status_module --with-pcre --with-http_gunzip_module --with-http_gzip_static_module --with-openssl --pid-path=/usr/local/nginx/pid --add-module=/usr/local/nginx/gnosek-nginx-upstream-fair-a18b409/ --with-cc-opt=‘-O3‘ --with-file-aio --with-http_realip_module --with-http_image_filter_module --with-http_secure_link_module --without-poll_module --with-google_perftools_module

5、安装

make && make install

时间: 2024-10-10 01:04:55

nginx1.6.2编译安装的相关文章

nginx-1.9.7 编译安装、理论简介

nginx是一个web网站常用的高性能http和反向代理服务器,其具有较好的并发能力,被网易.百度.腾讯.新浪等网站广泛使用. 一. 理论简介 1.首先弄清楚正向代理和反向代理 正向代理:代理客户端,替客户端收发请求,使真实的客户端对服务器不可见.如图所示,proxy和client同属于一个网络,对server透明 反向代理:代理服务器,提服务器收发请求,使真实的服务器对客户端不可见.如图所示,proxy和server同属于一个网络,对client透明 实际上proxy都是代为收发请求和响应,只

centos6.5中 nginx-1.6.3 编译安装

参考来源:http://nginx.org/en/docs/configure.html nginx-1.6.3 编译安装:1) ./configure --help 查看编译选项 2) 需要安装一下库: zlib zlib-devel pcre pcre-devel openssl openssl-develyum -y zlib zlib-devel pcre pcre-devel openssl openssl-devel 3)默认安装路径 /usr/local/nginx./config

Nginx1.8.0 编译安装

1.准备安装包 下载最新稳定版nginx-1.8.0 http://nginx.org/en/download.html 2.安装环境准备          Centos 6.5(Final) yum-y install pcre-devel openssl-devel 3. 安装 (a) 解压然后编译 ./configure--prefix=/usr/local/nginx --conf-path=/etc/nginx/nginx.conf --user=nginx--group=nginx 

CentOS 7中Nginx1.9.5编译安装教程systemctl启动

先安装gcc 等 yum -y install gcc gcc-c++ wget 复制代码 .然后装一些库 yum -y install gcc wget automake autoconf libtool libxml2-devel libxslt-devel perl-devel perl-ExtUtils-Embed pcre-devel openssl-devel 复制代码 进入默认的软件目录 cd /usr/local/src/ 复制代码 下载 nginx软件 wget http://

Centos 7 nginx-1.12.0编译安装

参考:http://www.nginx.cn/install 也不知道我的系统是否有这些依赖包,试试吧?缺少哪些我就装哪些吧,多踏点坑总是能学到点东西的. 获取nginx包 http://nginx.org/en/download.html configure --sbin-path=/user/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid 报错 ./

centos安装nginx1.10.1编译安装

1.编译 ./configure --prefix=/usr/local/nginx --add-module=../nginx-rtmp-module --sbin-path=/usr/local/nginx/sbin/nginx --conf-path=/usr/local/nginx/conf/nginx.conf --error-log-path=/usr/local/nginx/log/error.log --http-log-path=/usr/local/nginx/log/acc

CentOS 6.5 64位 编译安装Nginx

此篇文章参考了一些网站找的教程,自己遇到了很多坑,写一下自己的安装全过程. 服务器是腾讯云的.安装了centos 6.5系统. 1.首先安装GCC,make,G++编译器 yum -y install gcc automake autoconf libtool make yum install gcc gcc-c++ 2.安装PCRE库.zlib库.openssl (Nginx 必须用到的) 先创建一个目录用来放置一些安装包(例如 /data/src) mkdir /data/src 然后进入目

CentOS6.8编译安装Nginx1.10.2+MySQL5.7.16+PHP7.0.12

1.    下载 #MySQL下载地址 http://dev.mysql.com/downloads/mysql/ #Nginx下载地址 http://nginx.org/en/download.html #PHP下载地址 http://php.net/downloads.php 使用WinSCP把下载好的压缩包上传到/usr/local/src目录 mysql-5.7.16.tar.gz nginx-1.10.2.tar.gz php-7.0.12.tar.gz 2.    安装 2.1   

centos 6.9 编译安装 Nginx1.12.1

centos 6.9 使用yum 安装 Nginx1.12.1 Nginx (engine x) 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器.Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日. 其将源代码以类BSD许可证的形式发布,因它的稳定性.丰富的功能集.示例配置文件和低系统资源的消耗而闻名.2011年6月1日,nginx 1.0.4发布. Ng