首页 > 网站 > Nginx > 正文

CentOS 4.0安装配置Nginx的方法

2024-08-30 12:26:52
字体:
来源:转载
供稿:网友

1.安装说明:

系统环境:CentOS-4.0

2.依赖的程序

    (1). gzip module requires zlib library
    (2). rewrite module requires pcre library
    (3). ssl support requires openssl library

3.依赖程序的安装有两种方法:一种是下载包安装二是YUM一次性安装

(1)zlib安装
    下载地址:http://zlib.net/fossils/
      $tar -xvzf zlib-1.2.5.tar.gz
      $cd zlib-1.2.5.tar.gz
      $./configure
      $make
      $make install
(2)pcre安装
    下载地址:http://ftp.exim.llorien.org/pcre/
      $tar -xvzf pcre-8.02.tar.gz
      $cd pcre-8.02
      $./configure --prefix=/usr/local/pcre --enable-utf8 --enable-unicode-properties
      $ make && make install
(3)openssl安装
    下载地址:http://mirrors.ibiblio.org/openssl/source/
      $tar zvxf openssl-1.0.0.tar.gz
      $cd openssl-1.0.0
      $./config --prefix=/usr/local/ssl-1.0.0 shared zlib-dynamic enable-camellia
      $make && make install

(4)nginx安装

    下载地址:http://nginx.org/download/
      $tar zvxf Nginx 0.8.40.tar.gz
      $cd Nginx 0.8.40
      $./configure
      $ make
      $ make install
     更多配置:
      ./configure --prefix=/usr/local/nginx
     --with-openssl=/usr/include (启用ssl)
     --with-pcre=/usr/include/pcre/ (启用正规表达式)
     --with-http_stub_status_module (安装可以查看nginx状态的程序)
     --with-http_memcached_module (启用memcache缓存)
     --with-http_rewrite_module (启用支持url重写)
    方法二如下:这种方法就好,不容易出错,如果网速快10分内可以完成,网速不好也可以在20分内完成。
        yum –y install zlib zlib-devel openssl openssl-devel pcre pcre-devel
    现在三个依赖的程序的安装成功,下面是安装Nginx 0.8.40了。

      官网下载地址:http://www.nginx.org/
      $tar zvxf Nginx 0.8.40.tar.gz
      $cd Nginx 0.8.40
      $./configure  //默认安装在/usr/local/nginx下

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表