码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下nginx+tomcat负载均衡

时间:2015-04-02 16:51:43      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:nginx tomcat

1、为什么需要对tomcat服务器配置做负载均衡配置呢?【转】

tomcat服务器作为一个web服务器,其并发数目在300-500之间,如果大于这个并发数,tomcat那么会出现不能响应某些请求,严重影响程序的正常工作。另外,在访问量比较大的情况下,tomcat的线程数目会不断的增加。由于tomcat自身的对内存的占有控制,当对内存的占有达到最大值时便会出现内存溢出,对程序的访问会严重超时等现象,这样必须重启服务器来释放占有的内存,对网站或者游戏来说,会造成很大的损失。所以对tomcat的负载均衡很有必要。目前可以跟tomcat做负载均衡的有apache,但是由于ngnix的功能多并且配置简单,所以很多程序员会选择这种配置。ngnix并发数可达5W,所以理论上可以跟tomcat1:100做配置。 

2、安装nginx

[root@yuki nginx-1.3.15]# tar -zxvf nginx-1.3.15.tar.gz
[root@yuki nginx-1.3.15]# cd nginx-1.3.15
[root@yuki nginx-1.3.15]# ./configure --prefix=/usr/local/nginx

报错:

./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:

[root@yuki nginx-1.3.15]# yum install -y pcre-devel
[root@yuki nginx-1.3.15]# ./configure --prefix=/usr/local/nginx

又报错:

./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:

[root@yuki local]# cd zlib-1.2.8
[root@yuki zlib-1.2.8]# ./configure
[root@yuki sbin]# ./configure --prefix=/usr/local/nginx --with-zlib=/usr/local/zlib-1.2.8
[root@yuki sbin]# make && make install
[root@yuki sbin]# pwd
/usr/local/nginx/sbin
[root@yuki sbin]# ls
nginx
[root@yuki sbin]# ./nginx

查看80端口是否被占用:

[root@yuki sbin]# netstat -ano|grep 80

浏览器访问此IP:http://192.168.26.136/,出现如下,则搭建nginx成功。

Welcome to nginx!


本文出自 “面朝大海,真闲” 博客,请务必保留此出处http://yuanyujiao.blog.51cto.com/2095122/1627586

Linux下nginx+tomcat负载均衡

标签:nginx tomcat

原文地址:http://yuanyujiao.blog.51cto.com/2095122/1627586

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!