Tomcat Nginx Redis session sharing process diagram

Tomcat Nginx Redis session sharing process diagram

1. Preparation

Middleware: Tomcat, Redis, Nginx

Jar package: commons-pool2-2.4.2.jar, jedis-2.8.0.jar, tomcat-redis-session-manager-2.0.0.jar

2. Configure Tomcat

Multiple Tomacats need to be configured with different port numbers

/lib

Store the jar package in this location

/conf/server.xml

/conf/context.xml

host is the IP address of Redis, port is the port, and database is the database.

Nginx

/conf/nginx.conf

Upstream means the configuration server list. In this example, two tomcats are started, with ports 8080 and 9999 respectively.

proxy_pass means to configure the proxy server.

This configuration means listening to port 80 of the local (192.168.0.113) and forwarding requests to the Tomcat servers at 8080 and 9999 in a round-robin manner.

Redis

Redis does not require any special configuration, just start it.

3. Testing

Start the Redis service, two tomcat servers, and the Nginx server one after another.

Add a mark to the Tomcat startup page to check whether the sessionIds in the two servers are consistent.

/webapps/ROOT/index.jsp:

IV. Results

If you cannot switch to the page corresponding to the port by pressing F5 to refresh the page, it may be due to the browser cache.

Solution: Clear cache and refresh, alt+F5

At this point, you can see that multiple tomcat services are constantly polling, and the sessionId is consistent.

Then use the Redis desktop management tool to view the information:

You can see that the session information has been handed over to Redis for management.

Achieve success.

5. Disadvantages

This method depends on the Tomcat container. If the middleware is replaced with Jetty or other, it will not work.

There is also a better implementation method: Spring Session + Redis

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Complete steps for using Nginx+Tomcat for load balancing under Windows
  • Nginx/Httpd reverse proxy tomcat configuration tutorial
  • Nginx/Httpd load balancing tomcat configuration tutorial
  • Build Tomcat9 cluster through Nginx and realize session sharing
  • How to use Docker to build a tomcat cluster using nginx (with pictures and text)
  • Detailed tutorial on how to monitor Nginx/Tomcat/MySQL using Zabbix
  • Implementation of deploying vue project to nginx/tomcat server
  • Nginx+Tomcat high performance load balancing cluster construction tutorial
  • Analysis of the process of implementing Nginx+Tomcat cluster under Windwos

<<:  MySQL uses aggregate functions to query a single table

>>:  Detailed explanation of the use cases of Vue listeners

Recommend

Windows Server 2019 Install (Graphical Tutorial)

Windows Server 2019 is the latest server operatin...

Example of how to implement value transfer between WeChat mini program pages

Passing values ​​between mini program pages Good ...

Nginx reverse proxy forwards port 80 requests to 8080

Let's first understand a wave of concepts, wh...

VMware and CentOS system installation method to reset the root password

Today's Tasks 1. Choice of Linux distribution...

Analyze how to automatically generate Vue component documentation

Table of contents 1. Current situation 2. Communi...

Trash-Cli: Command-line Recycle Bin Tool on Linux

I believe everyone is familiar with the trashcan,...

How to solve the problem of too many open files in Linux

The cause is that the process opens a number of f...

A colorful cat under Linux

Friends who have used the Linux system must have ...

How to use Zen coding in Dreamweaver

After I published my last article “Zen Coding: A Q...

Html page supports dark mode implementation

Since 2019, both Android and IOS platforms have s...

Solution to overflow:hidden failure in CSS

Cause of failure Today, when I was writing a caro...

A friendly alternative to find in Linux (fd command)

The fd command provides a simple and straightforw...