Solution to Nginx session loss problem

Solution to Nginx session loss problem

In the path of using nginx as a reverse proxy tomcat, session loss may occur. Each time a request is sent, the JESSIONID will change, indicating that the last session is lost and a new session is created.

First case:

 server{
    listen 80;
    server_name www.jiahemdata.com www.jiahemdata.cn;
    charset utf-8;
    location /{
      proxy_redirect off;
      proxy_pass http://127.0.0.1:8093;
      proxy_set_header Host $host;
      proxy_set_header Referer $http_referer;
      proxy_set_header X-Real-Ip $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
    access_log logs/tomcat_access.log;
  }

Since the current nginx only listens to one port and does not set the path, the problem of session loss generally does not occur.

Second case:

 server{
    listen 80;
    server_name www.jiahemdata.com www.jiahemdata.cn;
    root /opt/tomcat-jhyx/webapps/jhyx/;
    charset utf-8;
    location /{
      proxy_pass http://127.0.0.1:8093/jhyx/;
      proxy_set_header Host $host;
      proxy_set_header Referer $http_referer;
      proxy_set_header X-Real-Ip $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
    access_log logs/tomcat_access.log;
  }

In this case, the tomcat folder is specified, not just a port listening, which will cause changes in each request and result in session loss.

The third case:

 server{
    listen 80;
    server_name www.jiahemdata.com www.jiahemdata.cn;
    root /opt/tomcat-jhyx/webapps/jhyx/;
    charset utf-8;
    location /{
      proxy_redirect off;
      proxy_pass http://127.0.0.1:8093/jhyx/;
      proxy_cookie_path /jhyx/ /; //Set the cookie path so that it does not change every time a request occurs.
      proxy_cookie_path /jhyx/;
      proxy_set_header Host $host;
      proxy_set_header Referer $http_referer;
      proxy_set_header X-Real-Ip $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
    access_log logs/tomcat_access.log;
  }

At this time, you find that your problem is still not solved. At this time, you are thinking, I have clearly set the cookie path, why doesn’t it work? That’s because you didn’t send the cookie when you requested.

The fourth case:

 server{
    listen 80;
    server_name www.jiahemdata.com www.jiahemdata.cn;
    root /opt/tomcat-jhyx/webapps/jhyx/;
    charset utf-8;
    location /{
      proxy_redirect off;
      proxy_pass http://127.0.0.1:8093/jhyx/;
      proxy_cookie_path /jhyx/ /;
      proxy_cookie_path /jhyx/;
      proxy_set_header Host $host;
      proxy_set_header Referer $http_referer;
      proxy_set_header Cookie $http_cookie; //Carry cookie information when sending request proxy_set_header X-Real-Ip $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
    access_log logs/tomcat_access.log;
  }

I hope you can find a correct solution on the Internet.

This is the end of this article about how to solve the Nginx session loss problem. For more information about Nginx session loss, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Springsession nginx reverse proxy integration process
  • Analysis of the solution to Nginx Session sharing problem
  • Detailed explanation of two ways to implement session persistence in Nginx reverse proxy
  • Implementation of Session Management with Nginx+Tomcat
  • nginx+redis realizes session sharing
  • nginx+tomcat implements load balancing and uses redis session sharing
  • Example of shared session configuration method in Nginx
  • Nginx load balancing multi-site shared session

<<:  MySQL stored procedure method example of returning multiple values

>>:  How to implement Ajax concurrent request control based on JS

Recommend

React dva implementation code

Table of contents dva Using dva Implementing DVA ...

Detailed explanation of three ways to connect Docker containers to each other

There are three ways to interconnect and communic...

How to communicate between WIN10 system and Docker internal container IP

1. After installing the Windows version of Docker...

How to set the number of mysql connections (Too many connections)

During the use of mysql, it was found that the nu...

Example of using #include file in html

There are two files a.htm and b.htm. In the same d...

The use of anchor points in HTML_PowerNode Java Academy

Now let's summarize several situations of con...

Several common ways to deploy Tomcat projects [tested]

1 / Copy the web project files directly to the we...

How to install Docker on Raspberry Pi

Because the Raspberry Pi is based on ARM architec...

vue-cropper component realizes image cutting and uploading

This article shares the specific code of the vue-...

Sample code for implementing multi-application deployment using tomcat+nginx

Table of contents Multi-application deployment 1-...

Use of js optional chaining operator

Preface The optional chaining operator (?.) allow...

Tutorial on installing PHP on centos via yum

First, let me introduce how to install PHP on Cen...

JS canvas realizes the functions of drawing board and signature board

This article shares the specific code of JS canva...

An article to understand the usage of typeof in js

Table of contents Base Return Type String and Boo...