Solution to the problem of not being able to access the home page when adding a tomcat container to Docker

Solution to the problem of not being able to access the home page when adding a tomcat container to Docker

question

The tomcat container was successfully added using the docker run command. The port was also opened. I also tried to turn off the firewall, but it always displayed 404 when accessing the tomcat homepage.

reason

The default version of the tomcat image obtained using Alibaba Cloud is 8.5.51. Its webapps file is empty, and its welcome page is placed in the webapps.dist file. This is why we will access it incorrectly.

Workaround

Delete the original webapps or change its name to another one, and rename webapps.dist to webapps

The steps are as follows:

1. Enter the interactive mode with tomcat in docker

[root@localhost ~]# docker exec -it your tomcat container ID /bin/bash

root@b3589cdf16cc:/usr/local/tomcat#

2. Modify the directory

ls -lroot@b3589cdf16cc:/usr/local/tomcat# mv webapps webapps2

root@b3589cdf16cc:/usr/local/tomcat# mv webapps.dist

3. Exit interactive mode

webappsroot@b3589cdf16cc:/usr/local/tomcat# exit

Example:

Access port 32768 in the host machine, which will be mapped to port 8080 of tomcat

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:
  • Why can't I see the access interface for Docker Tomcat?

<<:  React realizes the whole process of page watermark effect

>>:  Essential bonus items for optimizing and packaging the front end of Vue projects

Recommend

How to use Nginx to prevent IP addresses from being maliciously resolved

Purpose of using Nginx Using Alibaba Cloud ECS cl...

Google Translate Tool: Quickly implement multilingual websites

Google China has released a translation tool that ...

WeChat Mini Programs Implement Star Rating

This article shares the specific code for WeChat ...

How to obtain and use time in Linux system

There are two types of Linux system time. (1) Cal...

In-depth understanding of the creation and implementation of servlets in tomcat

1. What is a servlet 1.1. Explain in official wor...

Problems encountered in the execution order of AND and OR in SQL statements

question I encountered a problem when writing dat...

Sample code of uniapp vue and nvue carousel components

The vue part is as follows: <template> <...

Vue encapsulation component upload picture component

This article example shares the specific code of ...

Brief analysis of the introduction and basic usage of Promise

Promise is a new solution for asynchronous progra...

How to rename the table in MySQL and what to pay attention to

Table of contents 1. Rename table method 2. Notes...

Uninstalling MySQL database under Linux

How to uninstall MySQL database under Linux? The ...

Docker container log analysis

View container logs First, use docker run -it --r...