首页 > 代码库 > 搭建nginx在centos5.6测试环境
搭建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_moduleoption, or install the PCRE library into the system, or build the PCRE librarystatically 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_moduleoption, or install the zlib library into the system, or build the zlib librarystatically from the source with nginx by using --with-zlib=<path> option.
尼玛。。还能不能消停。。。
接着安装zlib-devel吧。。。
make -j 4make install
老规矩安装呗。。。
接着装完以后,就是这样得。。。
[root@localhost sbin]# ./nginx -hnginx version: nginx/1.7.3Usage: 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
好吧,一切都狠顺利,接着配置呗。。想让人家启动得配置好撒。。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。