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

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

Multi-application deployment

1-tomcat configuration

1.1- Project Configuration

First, go to the tomcat directory and copy the webapps folder for the deployment of the second application.

cp webapps webapps1 

insert image description here

At this point, you can deploy the second project in the same way as deploying a normal project, and upload the data package to the webapps1 file.

1.2-Service Configuration

Go to the tomcat service configuration file, open the server.xml configuration file, and fill in the relevant configuration information for the second application deployment.

cd confvim server.xml

insert image description here

At the end of the file, add a service resolution configuration.

<!-- Second project configuration-->
<Service name="Catalina1">
    
  <!-- To avoid conflicts, change the port -->
  <Connector port="81" protocol="HTTP/1.1"
             connectionTimeout="20000"
             redirectPort="8443" />

  <!-- Tomcat uses port 8009 by default, to avoid conflicts, modify -->
  <Connector port="8010" protocol="AJP/1.3" redirectPort="8443"/>
	
  <!-- Engine node, name changed to Catalina1 -->
  <!-- After the service is started, the corresponding engine folder will be generated under conf, and the name will remain the same. -->
  <Engine name="Catalina1" defaultHost="localhost">
    <Realm className="org.apache.catalina.realm.LockOutRealm">
      <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
             resourceName="UserDatabase"/>
    </Realm>

    <!-- Modify the Host node and change appBase to the location of the file to be published, which is webapps1 copied in the first step -->
    <Host name="localhost" appBase="webapps1"
          unpackWARs="true" autoDeploy="true">

      <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
             prefix="localhost_access_log" suffix=".txt"
             pattern="%h %l %u %t &quot;%r&quot; %s %b" />

    </Host>
  </Engine>
</Service>

2-Nginx Configuration

First, go to the conf configuration file under the Nginx service directory, find the nginx.conf configuration file, and edit it.

vim nginx.conf 

insert image description here

Add the reverse proxy configuration information inside http{} .

# Website is just a random name, it is just an identification, and the corresponding ip:port that needs to be proxied is inside it.
# Multiple services can also be directly filled in, nginx will automatically load upstream website{
                server localhost:81;
                server localhost:82;
        }

        server{
                listen 80;
                # Configure the domain name information that needs to be resolved, and ensure that this domain name can access the current server's server_name www.123.com;
                location / {
                		#Put the above defined object below for proxy_pass http://website;
                        proxy_set_header Host $http_host;
                        proxy_set_header X-Real-IP $remote_addr;
                        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                }
        }

3-Complete deployment

After completing the above two steps, restart tomcat and Nginx , and the two applications can be accessed separately through domain names.

# Enter the bin directory and restart tomcat
./shutdown.sh
./startup.sh
# Enter the sbin directory and restart nginx
./nginx -s reload

This concludes this article on sample code for implementing multi-application deployment with tomcat+nginx. For more information on multi-application deployment with tomcat+nginx, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Summary of the deployment of Tomcat cluster and Nginx load balancing based on Docker
  • Nginx+Tomcat multi-site deployment method
  • Detailed explanation of how Nginx + Tomcat reverse proxy can efficiently deploy multiple sites on one server
  • Detailed Nginx + Tomcat reverse proxy load balancing cluster deployment guide

<<:  Detailed explanation of CSS3 animation and new features of HTML5

>>:  The functions and differences between disabled and readonly

Recommend

Vue+thinkphp5.1+axios to realize file upload

This article shares with you how to use thinkphp5...

Practical record of vue using echarts word cloud chart

echarts word cloud is an extension of echarts htt...

Introduction to keyword design methods in web design

Many times, we ignore the setting of the web page ...

Docker packages the local image and restores it to other machines

1. Use docker images to view all the image files ...

Web designer's growth experience

<br />First of all, I have to state that I a...

JavaScript data flattening detailed explanation

Table of contents What is Flattening recursion to...

Alibaba Cloud Ubuntu 16.04 builds IPSec service

Introduction to IPSec IPSec (Internet Protocol Se...

How to add sudo permissions to a user in Linux environment

sudo configuration file The default configuration...

How to use webSocket to update real-time weather in Vue

Table of contents Preface About webSocket operati...

How to maintain a long connection when using nginx reverse proxy

· 【Scene description】 After HTTP1.1, the HTTP pro...

Extract specific file paths in folders based on Linux commands

Recently, there is a need to automatically search...

The best way to start a jar package project under Centos7 server

Preface Everyone knows how to run a jar package o...

The use of textarea in html and common problems and case analysis

The textarea tag is an HTML tag that we often use....