入门第一篇:Nginx+Tomcat+Memcached信心增强篇

摘要:摘要: Nginx+Tomcat+Memcached实现tomcat集群和session共享

本篇文章只是介绍简单的Nginx+Tomcat+Memcached配置及所需环境,没有详细介绍各项解释及优化配置,按照如下陪可以实现负载均衡,对于初学者来说上手很快,不会一头雾水,增强信心是有帮助的,至于更多更深层次的内容我后面会慢慢介绍更新,同时也希望读者私下里慢慢研究,共同研究进步,当然有这方经验的大牛可以关注下私聊,再下还有些问题请教,谢谢。。。

1 (48).jpg

Nginx+Tomcat+Memcached实现tomcat集群和session共享

有时候服务器需要处理更大的并发量则需要更多的nginx来作为代理转发并需要更多的tomcat节点(当然也有牛人能把tomcat配到数千并发量,这样也不一定需要太多tomcat)

1. nginx环境

1.1下载nginx服务包,在此我使用的是nginx-1.2.9

主要配置conf目录下的配置文件和使用nginx.exe的服务。

在cmd中进入nginx.exe所在的目录,

输入:start nginx启动nginx服务;

nginx –s quit或nginx –s stop 停止nginx服务;

nginx –s reload刷新nginx的配置文件。

启动nginx没反应,要在任务管理器-进程中查看是否启动。

1.2配置

找到nginx的安装目录:ngin1. 1.2.9/conf/conf文件
nginx.conf文件是nginx的核心配置文件。

本人配置如下:三个tomcat

#运行用户

#user nobody;

#开启进程数<=CPU数

worker_processes 2;

#错误日志保存位置

#error_log logs/error.log;

#error_log logs/error.log notice;

#error_log logs/error.log info;

#进程号保存文件

#pid logs/nginx.pid;

#工作模式及连接数上限

events {

#epoll是多路复用IO(I/O Multiplexing)中的一种方式,

#仅用于linux2.6以上内核,可以大大提高nginx的性能

#useepoll;

#每个进程最大连接数(最大连接=连接数x进程数)

#每个进程最大连接数(最大连接=连接数x进程数)

#单个后台worker process进程的最大并发链接数

worker_connections 1024;

# 并发总数是 worker_processes 和 worker_connections 的乘积

# 即 max_clients = worker_processes * worker_connections

# 在设置了反向代理的情况下,max_clients = worker_processes * worker_connections / 4为 #什么

# 为什么上面反向代理要除以4,应该说是一个经验值

# 根据以上条件,正常情况下的Nginx Server可以应付的最大连接数为:4 * 8000 = 32000

# worker_connections 值的设置跟物理内存大小有关

# 因为并发受IO约束,max_clients的值须小于系统可以打开的最大文件数

# 而系统可以打开的最大文件数和内存大小成正比,一般1GB内存的机器上可以打开的文件数大约是10万左右

# 我们来看看360M内存的VPS可以打开的文件句柄数是多少:

# $ cat /proc/sys/fs/file-max

# 输出 34336

# 32000 < 34336,即并发连接总数小于系统可以打开的文件句柄总数,这样就在操作系统可以承受的范围之内

# 所以,worker_connections 的值需根据 worker_processes 进程数目和系统可以打开的最大文件总数进行适当地进行设置

# 使得并发总数小于操作系统可以打开的最大文件数目

# 其实质也就是根据主机的物理CPU和内存进行配置

# 当然,理论上的并发总数可能会和实际有所偏差,因为主机还有其他的工作进程需要消耗系统资源。

# ulimit -SHn 65535

}

http {

#文件扩展名与文件类型映射表

include mime.types;

#默认文件类型

default_type application/octet-stream;

#日志文件输出格式 这个位置相于全局设置

#log_format main \'$remote_addr - $remote_user [$time_local] "$request" \'

# \'$status $body_bytes_sent "$http_referer" \'

# \'"$http_user_agent" "$http_x_forwarded_for"\';

#请求日志保存位置

#access_log logs/access.log main;

#设定请求缓冲

client_header_buffer_size1k;

large_client_header_buffers44k;

#打开发送文件

#sendfile 指令指定 nginx 是否调用 sendfile 函数(zero copy 方式)来输出文件,

#对于普通应用,必须设为 on,

#如果用来进行下载等应用磁盘IO重负载应用,可设置为 off,

#以平衡磁盘与网络I/O处理速度,降低系统的uptime.

sendfile on;

#tcp_nopush on;

#连接超时时间

#keepalive_timeout 0;

keepalive_timeout 65;

#客户端上传文件大小控制

client_max_body_size8m;

#打开gzip压缩

#gzip on;

#设定负载均衡的服务器列表

upstream tomcatBalance{

server 127.0.0.1:7002 ;#第一台机器

server 127.0.0.1:7004 ;#第二台机器

server 127.0.0.1:7008 ;#第三台机器

}

#第一个虚拟主机

server {

listen 80;#监听IP端口

server_name localhost;#主机名#定义使用 localhost访问

#设置字符集

#charset koi8-r;

#本虚拟server的访问日志 相当于局部变量

#access_log logs/host.access.log main;

#日志文件输出格式

#log_formatmain\'$remote_addr-$remote_user[$time_local]"$request"\'

#\'$status$body_bytes_sent"$http_referer"\'

#\'"$http_user_agent""$http_x_forwarded_for"\';

location / {

root html;

index index.html index.htm;#定义首页索引文件的名称

#请求转发向真实服务器IP

proxy_pass http://tomcatBalance;

#15秒超时

proxy_connect_timeout 15;

}

#静态文件缓存时间设置 #静态文件,nginx自己处理
#location ~ .*.(gif|jpg|jpeg|png|bmp|swf)${
# expires 30d;
#}

#过期30天,静态文件不怎么更新,过期可以设大一点,

#如果频繁更新,则可以设置得小一点。


#静态文件缓存时间设置
#location ~ .*.(js|css)?${
# expires 1h;
#}

#对本server"/"启用负载均衡
#location / {
# proxy_pass http://mysvr;
# proxy_redirect off;
# proxy_set_header Host $host;
# proxy_set_header X-Real-IP $remote_addr;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# client_max_body_size 10m; //允许客户端请求的最大单文件字节数

# client_body_buffer_size 128k; //缓冲区代理缓冲用户端请求的最大字节数

# proxy_connect_timeout 90; /nginx跟后端服务器连接超时时间

# proxy_send_timeout 90; //连接成功后,后端服务器响应时间

# proxy_read_timeout 90;
# proxy_buffer_size 4k; //设置代理服务器(nginx)保存用户头信息的缓冲区大小

# proxy_buffers 4 32k; //proxy_buffers缓冲区,网页平均在32k以下的话,这样设置

# proxy_busy_buffers_size 64k; //高负荷下缓冲大小(proxy_buffers*2)

# proxy_temp_file_write_size 64k; //设定缓存文件夹大小,大于这个值,将从upstream服务器传

#}

#设定查看Nginx状态的地址
#location /NginxStatus {
# stub_status on;
# access_log on;
# auth_basic “NginxStatus”;
# auth_basic_user_file conf/htpasswd;
#}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html

#

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root html;

}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80

#

#location ~ .php$ {

# proxy_pass http://127.0.0.1;

#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

#

#location ~ .php$ {

# root html;

# fastcgi_pass 127.0.0.1:9000;

# fastcgi_index index.php;

# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;

# include fastcgi_params;

#}

# deny access to .htaccess files, if Apache\'s document root

# concurs with nginx\'s one

#

#location ~ /.ht {

# deny all;

#}

}

# another virtual host using mix of IP-, name-, and port-based configuration

#

#server {

# listen 8000;

# listen somename:8080;

# server_name somename alias another.alias;

# location / {

# root html;

# index index.html index.htm;

# }

#}

# HTTPS server

#

#server {

# listen 443;

# server_name localhost;

 

# ssl on;

# ssl_certificate cert.pem;

# ssl_certificate_key cert.key;

 

# ssl_session_timeout 5m;

 

# ssl_protocols SSLv2 SSLv3 TLSv1;

# ssl_ciphers HIGH:!aNULL:!MD5;

# ssl_prefer_server_ciphers on;

 

# location / {

# root html;

# index index.html index.htm;

# }

#}

 

}

1. msm环境

1.1 安装

下载memcached服务及安装包,我用的是memcached-1.2.6,解压启动memcached.exe,默认端口11211,然后再服务中查看,没什么好说的。

2.2下载memcached session共享tomcat会话所需要的jar包(注:本人使用的是javolution序列化方式,所需要的jar包如下)

javolution-5.4.3.1.jar,memcached-2.5.jar,memcached-session-manager-1.3.0.jar,msm-javolution-serializer-1.3.0.jar,msm-javolution-serializer-cglib-1.3.0.jar,msm-javolution-serializer-jodatime-1.3.0.jar ,memcached-session-manager-tc6-1.6.3.jar

2. tomcat配置

3.1.需要几个tomcat节点,复制几份tomcat;

3.2.把上面2.2的jar包放在每个tomcat的lib下面;

3.3.修改tomcat端口,tomcatconfserver.xml中,修改如下三个位置端口号,确保每个tomcat的端口不冲突及没有被机器其他程序占用:<Server port="8009" shutdown="SHUTDOWN">;

<Connector executor="tomcatThreadPool"

port="8080" protocol="HTTP/1.1"

connectionTimeout="20000"

enableLookups="false"

redirectPort="8443"

URIEncoding="UTF-8"

acceptCount="200"

compression="on"/>

3.4.同样在confserver.xml中,添加启动的项目,如下:<Context path="" docBase="D:lianxiwebMemberWebRoot" reloadable="true" crossContext="true">

</Context>,本人随便找个javaweb项目,每个tomcat都添加启动项,然后能访问就行。

3.5. 关键一步,找到tomcatconfcontext.xml文件,在

<context>

<Manager className="de.javakaffee.web.msm.MemcachedBackupSessionManager"

memcachedNodes="n2:localhost:11211"

requestUriIgnorePattern=".*/.(png|gif|jpg|css|js)$"

sessionBackupAsync="false"

sessionBackupTimeout="100"

transcoderFactoryClass="de.javakaffee.web.msm.serializer.javolution.JavolutionTranscoderFactory"

copyCollectionsForSerialization="false"/>

</context>添加中间代码。

3.6.为了区分各个tomcat,最好修改下启动tomcat的名称,在tomcatbin catalina.bat中找到类似这段代码,改动Tomcat部分

set _EXECJAVA=start "Tomcat" %_RUNJAVA%

3.7.在tomcatconfserver.xml中找到

<Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1"> 添加jvm1部分,确保每个tomcat的jvmRoute名字不一样。

4.最后,如果项目都可以部署起来,在项目登陆页,添加一段脚本如:<%System.out.print("tomcat1")%>在浏览器输入localhost就可以在每个tomcat中看输出。