nginx源码安装

本文详细介绍了在Ubuntu 12.04系统中使用源码安装nginx的过程,包括安装依赖包(如zlib、PCRE)、配置及编译步骤,并提供了运行指令和预期效果的说明。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


nginx源码安装
 
       安装环境:
 
                     操作系统:Ubuntu 12.04
 
                     Nginx:     V1.4.2
 
                     PCRE:    V8.33
 
                     zlib:         V1.2.8
 
        下载上述源包到当前用户主目录(本机:/home/tdtc100)。
 
       1. 安装zlib
 
           (1)解压缩
 
[plain] 
tdtc100@ubuntu:~$ tar zxvf zlib-1.2.8.tar.gz  
           (2)安装
 
[plain] 
tdtc100@ubuntu:~$ cd zlib-1.2.8  
tdtc100@ubuntu:~/zlib-1.2.8$ ./configure  
tdtc100@ubuntu:~/zlib-1.2.8$ make  
tdtc100@ubuntu:~/zlib-1.2.8$ sudo make install  
       2. 安装PCRE
 
           (1) 安装依赖包
 
             c++
 
[plain] 
sudo apt-get install build-essential  
            注:如果不安装,在进行(3)时,会出现:
 
[plain] 
configure: error: You need a C++ compiler for C++ support.  
          (2)解压缩
 
[plain] 
tdtc100@ubuntu:~$ tar zxvf pcre-8.33.tar.gz  
           (3)安装
 
[plain] 
tdtc100@ubuntu:~$ cd pcre-8.33  
tdtc100@ubuntu:~/pcre-8.33$ ./configure  
tdtc100@ubuntu:~/pcre-8.33$ make  
tdtc100@ubuntu:~/pcre-8.33$ sudo make install  
        3. 安装nginx
 
          (1)安装依赖包
 
            open-ssl library
 
[plain] 
sudo apt-get install libcurl4-openssl-dev  
            注:如果不安装,在进行(3)时,会出现:
 
[plain] 
./configure: error: SSL modules require the OpenSSL library.  
You can either do not enable the modules, or install the OpenSSL library  
into the system, or build the OpenSSL library statically from the source  
with nginx by using --with-openssl=<path> option.  
          (2)解压缩
 
[plain] 
tdtc100@ubuntu:~$ tar zxvf nginx-1.4.2.tar.gz  
          (3)安装
                   参考官方文档
[plain] 
tdtc100@ubuntu:~$ cd nginx-1.4.2  
tdtc100@ubuntu:~/nginx-1.4.2$ ./configure \  
> --sbin-path=/usr/local/nginx/nginx \  
> --conf-path=/usr/local/nginx/nginx.conf \  
> --pid-path=/usr/local/nginx/nginx.pid \  
> --with-http_ssl_module \  
> --with-pcre=../pcre-8.33 \  
> --with-zlib=../zlib-1.1.3  
tdtc100@ubuntu:~/nginx-1.4.2$ make  
tdtc100@ubuntu:~/nginx-1.4.2$ sudo make install  
 
 
-------------------------安装完毕-----------------------xiaobin_hlj80-------------------------------------------
 
 
 
运行:
 
[plain] 
tdtc100@ubuntu:/usr/local/nginx$ sudo ./nginx  
 
运行效果:
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值