Nginx+tomcat+redis 集群session共享

插件資源下載地址:https://github.com/ran-jit/tomcat-cluster-redis-session-manager/releases/tag/2.0.2

一绩社、前置條件

  JDK:jdk1.8.0_161稽穆,  Nginx:nginx-1.13.9 衙熔,  tomcat:Apache Tomcat/8.5.16

  Nginx:192.168.22.100

  Redis:192.168.22.100

  tomcat1:192.168.22.105:8081

  tomcat2:192.168.22.106:8082

二、配置Nginx服務器的nginx.conf文件(/usr/local/nginx/conf)

user www;

worker_processes? 1;

#error_log? logs/error.log;

#error_log? logs/error.log? notice;

#error_log? logs/error.log? info;

#pid? ? ? ? logs/nginx.pid;

events {

? ? worker_connections? 65535;

? ? use epoll;

}

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;

? ? server_tokens? off;

? ? sendfile? ? ? ? on;

? ? tcp_nopush? ? on;

? ? tcp_nodelay? ? on;

? ? #keepalive_timeout? 0;

? ? keepalive_timeout? 10;

? ? gzip? on;

? ? server {

? ? ? ? listen? ? ? 80;

? ? ? ? server_name? localhost;

? ? ? ? #charset koi8-r;

? ? ? ? #access_log? logs/host.access.log? main;

? ? ? ? location / {

? ? ? ? ? ? root? html;

? ? ? ? ? ? index? index.html index.htm;

? ? ? ? }

? ? #location /filestore/ {

? ? ? ? #? ? root? /usr/local/nginx/html/filestore/;

? ? ? ? #? ? autoindex on;

? ? ? ? #}

? ? ? ? #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;

? ? #? ? }

? ? #}

upstream tomcat {

? ? server 192.168.22.105:8081 weight=1 fail_timeout=3s max_fails=2;

? ? server 192.168.22.106:8082 weight=1 fail_timeout=3s max_fails=2;

}

##HTTPS server

server {

? ? ? ? listen? ? ? 443 ssl;

? ? ? ? server_name? localhost;

? ? ? ? ssl on;

? ? ? ? root html;

? ? ? ? index index.html index.htm;

? ? ? ? ssl_certificate? /usr/local/nginx/cert/xxxxxxxxx.pem;

? ? ? ? ssl_certificate_key? /usr/local/nginx/cert/xxxxxxxx.key;

? ? ? ? ssl_session_timeout 5m;

? ? ? ? ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;

? ? ? ? ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

? ? ? ? ssl_prefer_server_ciphers on;

? ? ? ? location / {

? ? ? ? ? ? ? ? proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

? ? ? ? ? ? ? ? proxy_set_header Host $http_host;

? ? ? ? ? ? ? ? proxy_set_header X-Forwarded-Proto https;

? ? ? ? ? ? ? ? proxy_redirect off;

? ? ? ? ? ? ? ? proxy_connect_timeout? ? ? 240;

? ? ? ? ? ? ? ? proxy_send_timeout? ? ? ? 240;

? ? ? ? ? ? ? ? proxy_read_timeout? ? ? ? 240;

? ? ? ? ? ? ? ? # note, there is not SSL here! plain HTTP is used

? ? ? ? ? ? ? ? proxy_pass http://tomcat;

? ? ? ? }

? ? }

}



三名段、下載tomcat-cluster-redis-session-manager插件

 ①下載完阱扬,解壓然后將tomcat-cluster-redis-session-manager\tomcat-cluster-redis-session-manager\lib目錄下的jar包復制到tomcat\lib下

  ②將tomcat-cluster-redis-session-manager\tomcat-cluster-redis-session-manager\conf\redis-data-cache.properties復制到tomcat\conf下伸辟。注意將redis.hosts改為redis對用的地址

#-- Redis data-cache configuration

#- redis hosts ex: 127.0.0.1:6379, 127.0.0.2:6379, 127.0.0.2:6380, ....

redis.hosts=192.168.22.100:6379

#- redis password (for stand-alone mode)

#redis.password=

#- set true to enable redis cluster mode

redis.cluster.enabled=false

#- redis database (default 0)

#redis.database=0

#- redis connection timeout (default 2000)

#redis.timeout=2000



四麻惶、修改tomcat目錄下的contex.xml(/opt/weixins1/tomcat1/conf)


? contributor license agreements.? See the NOTICE file distributed with

? this work for additional information regarding copyright ownership.

? The ASF licenses this file to You under the Apache License, Version 2.0

? (the "License"); you may not use this file except in compliance with

? the License.? You may obtain a copy of the License at

? ? ? http://www.apache.org/licenses/LICENSE-2.0

? Unless required by applicable law or agreed to in writing, software

? distributed under the License is distributed on an "AS IS" BASIS,

? WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

? See the License for the specific language governing permissions and

? limitations under the License.-->WEB-INF/web.xml${catalina.base}/conf/web.xml-->

? ? -->


  至此,所有的配置已經(jīng)完成信夫。

?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末窃蹋,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子静稻,更是在濱河造成了極大的恐慌警没,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件振湾,死亡現(xiàn)場離奇詭異杀迹,居然都是意外死亡,警方通過查閱死者的電腦和手機恰梢,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進店門佛南,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人嵌言,你說我怎么就攤上這事嗅回。” “怎么了摧茴?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵绵载,是天一觀的道長。 經(jīng)常有香客問我苛白,道長娃豹,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任购裙,我火速辦了婚禮懂版,結果婚禮上,老公的妹妹穿的比我還像新娘躏率。我一直安慰自己躯畴,他們只是感情好,可當我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布薇芝。 她就那樣靜靜地躺著蓬抄,像睡著了一般。 火紅的嫁衣襯著肌膚如雪夯到。 梳的紋絲不亂的頭發(fā)上嚷缭,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天,我揣著相機與錄音,去河邊找鬼阅爽。 笑死路幸,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的优床。 我是一名探鬼主播劝赔,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼胆敞!你這毒婦竟也來了着帽?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤移层,失蹤者是張志新(化名)和其女友劉穎仍翰,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體观话,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡予借,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了频蛔。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片灵迫。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖晦溪,靈堂內(nèi)的尸體忽然破棺而出瀑粥,到底是詐尸還是另有隱情,我是刑警寧澤三圆,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布狞换,位于F島的核電站,受9級特大地震影響舟肉,放射性物質(zhì)發(fā)生泄漏修噪。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一路媚、第九天 我趴在偏房一處隱蔽的房頂上張望黄琼。 院中可真熱鬧,春花似錦整慎、人聲如沸脏款。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至够吩,卻和暖如春比然,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背周循。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工强法, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留万俗,地道東北人。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓饮怯,卻偏偏與公主長得像闰歪,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子蓖墅,可洞房花燭夜當晚...
    茶點故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容