Nginx+Tomcat 集群配置
1.工具包
nginx-1.8.1.tar.gz
apache-tomcat-8.5.15.tar.gz
3.运行环境
centos 7
4. tomcat配置
修改Tomcat配置 server.xml
三个tomcat 端口都要改
5.Nginx 配置
解压Nginx tar包 tar -zxvf nginx-1.8.1.tar.gz
cd /home/nginx-1.8.1
./configure --prefile /usr/local/nginx
make & make install
配置核心文件
cd /usr/local/nginx/conf/nginx.conf
ok 简单配置完成后启动nginx
启动 ./usr/local/nginx/sbin/nginx
停止 ./usr/local/nginx -s stop
6.然后输入地址测试:drp/login.html 查看运行状况了
tomcat1
tomcat2
tomcat3
nginx-1.8.1.tar.gz
apache-tomcat-8.5.15.tar.gz
3.运行环境
centos 7
4. tomcat配置
修改Tomcat配置 server.xml
三个tomcat 端口都要改
5.Nginx 配置
解压Nginx tar包 tar -zxvf nginx-1.8.1.tar.gz
cd /home/nginx-1.8.1
./configure --prefile /usr/local/nginx
make & make install
配置核心文件
cd /usr/local/nginx/conf/nginx.conf
- worker_processes 1;#工作进程的个数,一般与计算机的cpu核数一致
- events {
- worker_connections 1024;#单个进程最大连接数(最大连接数=连接数*进程数)
- }
- http {
- include mime.types; #文件扩展名与文件类型映射表
- default_type application/octet-stream;#默认文件类型
- sendfile on;#开启高效文件传输模式,sendfile指令指定nginx是否调用sendfile函数来输出文件,对于普通应用设为 on,如果用来进行下载等应用磁盘IO重负载应用,可设置为off,以平衡磁盘与网络I/O处理速度,降低系统的负载。注意:如果图片显示不正常把这个改成off。
- keepalive_timeout 65; #长连接超时时间,单位是秒
- gzip on;#启用Gizp压缩
- #服务器的集群
- upstream netitcast { #服务器集群名字
- server 127.0.0.1:8081 weight=1;#服务器配置 weight是权重的意思,权重越大,分配的概率越大。
- server 127.0.0.1:8082 weight=1;
- server 127.0.0.1:8083 weight=1;
- }
- #当前的Nginx的配置
- server {
- listen 8891;#默认80端口,可以改成其他端口
- server_name localhost;############## 当前服务的域名
- location / {
- proxy_pass http://netitcast; #和服务器名称对应
- proxy_redirect default;
- }
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root html;
- }
- }
- }
ok 简单配置完成后启动nginx
启动 ./usr/local/nginx/sbin/nginx
停止 ./usr/local/nginx -s stop
6.然后输入地址测试:drp/login.html 查看运行状况了
tomcat1
tomcat2
tomcat3
session 共享的4种方式