CentOs6.5 安装Nginx 负载均衡软件总结

今天在搭建Nginx+Tomcat 负载均衡环境的时候,遇到了很多之前 的问题,现在总结如下:

问题错误一:

make[1]: Entering directory `/root/Nginx'
cd /server/openssl \
        && make clean \
        && ./config --prefix=/server/openssl/openssl no-shared  no-threads \
        && make \
        && make install
make[2]: Entering directory `/server/openssl'
make[2]: *** No rule to make target `clean'.  Stop.
make[2]: Leaving directory `/server/openssl'
make[1]: *** [/server/openssl/openssl/include/openssl/ssl.h] Error 2
make[1]: Leaving directory `/root/Nginx'
make: *** [build] Error 2

解决问题的办法:
编译代码了也就是 with-openssl=/______这个路径指向你的源码安装包路径而不是你安装后的路径!

–with-pcreNginx的rewrite功能需要使用pcre库才能工作,而Nginx的编译参数里面的这个选项并不是像常规的那样指定pcre的安装目录,而是指定pcre源代码的目录。

--with-zlib 跟openssl 和pcre 的安装方式相识:指定的是源码的安装包而不是安装路径


CentOS 6.5 安装Nginx 负载均衡软件实列:

1、解压安装包

# tar zxvf Nginx-1.6.2.tar.gz
2、进入安装包目录
[root@bogonsrc]# cd Nginx2
3、编译安装
root@bogonNginx2 ./configure --prefix=/usr/local/webserverNginx --with-http_stub_status_module http_ssl_module pcresrc8.37  (pcre源码安装路径)  --with-openssl=/usr/local/openssl-1.0.1g  (openssl 源码安装路径)  --with-zlib=/usr/local/zlib-1.2.8
4、编译和安装
 make
 make install
5、查看Nginx 版本信息
usr/Nginxsbinv
相关Nginx相关配置请参考:

相关文章

Centos下搭建性能监控Spotlight
CentOS 6.3下Strongswan搭建IPSec VPN
在CentOS6.5上安装Skype与QQ
阿里云基于centos6.5主机VPN配置
CentOS 6.3下配置multipah
CentOS安装、配置APR和tomcat-native