运维之道 | Nginx+Tomcat动静分离及Nginx优化

前言

nginx处理用户请求的静态页面,tomcat处理用户请求jsp页面,来实现动态分离,nginx处理静态页面效率远高于tomcat,这样一来就能更好的提高并发,处理性能。

一、环境准备

1、JDK配置
运维之道 | Linux环境安装配置JDK(rpm、源码)
百度网盘 jdk 安装包 — 密码:ocg2
2、Nginx安装
运维之道 | Centos7 Nginx安装部署
百度网盘 nginx 安装包 — 密码:xw8x
3、Tomcat安装
运维之道 | CentOS7 Tomcat安装部署
百度网盘 tomcat 安装包 — 密码:a9k5

二、主配置文件配置

1、修改nginx配置文件
[root@localhost ~]# vim /usr/local/nginx/conf/nginx.conf

user root;
worker_processes  1;
error_log  logs/error.log;
pid       logs/nginx.pid;
events {
    use epoll;
    worker_connections  1024;
}
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;

    sendfile        on;
    keepalive_timeout  65;
    #gzip压缩功能设置
    gzip on;
    gzip_min_length 1k;
    gzip_buffers    4 16k;
    gzip_http_version 1.0;
    gzip_comp_level 2;
    gzip_types text/plain application/x-javascripttext/css application/xml;
    gzip_vary on;

    server {
        listen       80;
        server_name 192.168.182.11;
        location / {
    #jsp网站程序根目录,一般nginx与tomcat在同一个目录
            root  /usr/local/tomcat/webapps/ROOT/;
            index  index.html index.jsp index.html;
        }
        location ~ .*.jsp$ {
            index index.jsp;
            proxy_pass http://127.0.0.1:8080;   #来自jsp请求交给tomcat处理
            proxy_redirect off;
            proxy_set_header Host $host;    	#后端的Web服务器可以通过X-Forwarded-For获取用户真实IP
            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_read_timeout 90;      		#连接成功后,后端服务器响应时间
            proxy_buffer_size 4k;       		#设置代理服务器(nginx)保存用户头信息的缓冲区大小
            proxy_buffers 6 32k;       			#proxy_buffers缓冲区,网页平均在32k以下的话,这样设置
            proxy_busy_buffers_size 64k;#高负荷下缓冲大小(proxy_buffers*2)
            proxy_temp_file_write_size 64k; #设定缓存文件夹大小,大于这个值,将从upstream服务器传
        }
        location ~ .*\.(gif|jpg|png|bmp|swf|html)$   #由nginx处理静态页面
        {
            expires 30d;   #使用expires缓存模块,缓存到客户端30}
        location ~ .*\.(jsp|js|css)?$
        {
2、修改nginx、tomcat测试界面
  • 将百度的首页作为nginx测试界面
[root@localhost ~]# curl www.baidu.com > /usr/local/nginx/html/index.html
  • 将百度的首页作为tomcat测试界面
[root@localhost ~]# curl www.baidu.com > /usr/local/tomcat/webapps/ROOT/index.html
3、性能测试

使用的ab压力测试工具,模拟发起一次1万的并发请求,使用的index.html页面是百度首页代码

Nginx测试

在这里插入图片描述

Tomcat测试

在这里插入图片描述

主要参数说明:
  • Requests per second:平均每秒处理事务数
  • Time per request:平均事务响应时间
  • Tranfer rate:平均每秒网络吞吐量

经上面测试得出:nginx每秒处理请求7600次,而tomcat每秒只处理请求6000次。
由此看来,nginx比tomcat处理能力强,如果网站程序静态页面多的话,就应该考虑使用Nginx与Tomcat整合来使用。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章