How to obtain the IP address of a remote user in the Nginx + Tomcat cluster

Source: Internet
Author: User
: This article describes how to obtain the IP address of a remote user in the Nginx + Tomcat cluster. For more information about PHP tutorials, see. Reprinted: http://pengranxiang.iteye.com/blog/1450558

When deploying Nginx + Tomcat clusters, backend Tomcat needs to obtain the user's IP address.

Java code

  1. Request. getRemoteAddr ()

The obtained intranet address is always the Nginx intranet address.


As the user request passes through Nginx and Nginx forwards the request to Tomcat, Tomcat always obtains the Nginx Ip address.

To obtain the real user IP address, you need to make some configuration on Nginx.


Location/lower settings
Proxy_set_header X-Real-IP $ remote_addr;
Proxy_set_header Host $ host;
Restart nginx.


Java code to obtain the real IP address from the request header

Java code

  1. Request. getHeader ("X-Real-IP ")

The above describes how to solve the problem of obtaining remote user IP addresses in the Nginx + Tomcat cluster, including some content, and hope to help friends who are interested in the PHP Tutorial.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.