CentOs6.5 安装Nginx 负载均衡软件总结
熊孩纸
阅读:616
2021-03-31 21:49:40
评论:0
今天在搭建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-pcre Nginx的rewrite功能需要使用pcre库才能工作,而Nginx的编译参数里面的这个选项并不是像常规的那样指定pcre的安装目录,而是指定pcre源代码的目录。
--with-zlib 跟openssl 和pcre 的安装方式相识:指定的是源码的安装包而不是安装路径
CentOS 6.5 安装Nginx 负载均衡软件实列:
1、解压安装包
# tar zxvf nginx-1.6.2.tar.gz
[root@bogon src]# cd nginx-1.6.23、编译安装
[root@bogon nginx-1.6.2]# ./configure --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.37 (pcre源码安装路径) --with-openssl=/usr/local/openssl-1.0.1g (openssl 源码安装路径) --with-zlib=/usr/local/zlib-1.2.84、编译和安装
[root@bogon nginx-1.6.2]# make
[root@bogon nginx-1.6.2]# make install5、查看nginx 版本信息
[root@bogon nginx-1.6.2]# /usr/local/webserver/nginx/sbin/nginx -v相关Nginx相关配置请参考:
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。