zoukankan      html  css  js  c++  java
  • 搭建nginx在centos5.6测试环境

    神一样的堕落了,以前搭建任何linux下的服务不费吹灰之力,现在搭建一个nginx居然老是想着找运维的小伙伴了。
    岁月催人老啊。。。看到小伙伴们如此的忙碌,我选择自己动手丰衣足食吧,过程记录下。

    wget http://nginx.org/download/nginx-1.7.3.tar.gz

    我是在centOS 5.6下弄得,这个是64位。因为这边需要测试一个自己用python写的agent。
    下载以后很简单的解压、编译,这个过程遇到一些比较蛋疼的事情。具体如下:

    ./configure: error: the HTTP rewrite module requires the PCRE library.
    You can either disable the module by using --without-http_rewrite_module
    option, or install the PCRE library into the system, or build the PCRE library
    statically from the source with nginx by using --with-pcre=<path> option.

    甚是蛋疼,看了下缺少pcre-devel,直接安装。
    接着配置看看,然后又开始报了。

    ./configure: error: the HTTP gzip module requires the zlib library.
    You can either disable the module by using --without-http_gzip_module
    option, or install the zlib library into the system, or build the zlib library
    statically from the source with nginx by using --with-zlib=<path> option.

    尼玛。。还能不能消停。。。
    接着安装zlib-devel吧。。。

    make -j 4
    make install

    老规矩安装呗。。。

    接着装完以后,就是这样得。。。

    [root@localhost sbin]# ./nginx -h
    nginx version: nginx/1.7.3
    Usage: nginx [-?hvVtq] [-s signal] [-c filename] [-p prefix] [-g directives]
    
    Options:
    -?,-h : this help
    -v : show version and exit
    -V : show version and configure options then exit
    -t : test configuration and exit
    -q : suppress non-error messages during configuration testing
    -s signal : send signal to a master process: stop, quit, reopen, reload
    -p prefix : set prefix path (default: /usr/local/nginx//)
    -c filename : set configuration file (default: conf/nginx.conf)
    -g directives : set global directives out of configuration file

    好吧,一切都狠顺利,接着配置呗。。想让人家启动得配置好撒。。

  • 相关阅读:
    ManualResetEvent详解
    MEF搜索范围
    ThreadStart和ParameterizedThreadStart区别
    快速理解C#高级概念(一) Delegate委托
    c# 多线程 --Mutex(互斥锁)
    sql server 得到数据库字典
    遇到的坑:在线用户统计的实现
    asp.net core 使用EF7 Code First 创建数据库,同时使用命令创建数据库
    使用cachemanager做缓存(Session的缓存)
    C# web api返回类型设置为json的两种方法
  • 原文地址:https://www.cnblogs.com/xiaoCon/p/3840105.html
Copyright © 2011-2022 走看看