Various problems and solutions in the process of deploying Tomcat to release projects on Linux

Various problems and solutions in the process of deploying Tomcat to release projects on Linux

Deploy the project to the project site test environment

JDK1.8
Tomcat8.5
Maven packaged war
Linux-----Centos
I don't know who gave me the Tomcat on site, uploaded it to the ****** directory of the Linux platform, and decompressed it. Direct Start

Figure 1:

Tomcat directory structure

Question 1

Since this is the first time Tocmat is started, there is no log file. So start ./startup.sh directly. You can then use the following command to dynamically view the log information. Tips after execution No execute permission

./startup.sh & tailf ../logs/catalina.out

Problem Analysis: The current user does not have permission to run the .sh executable file

Problem solving: Use command: chmod u+x *.sh. Execute in the tomcat/bin directory

Command analysis: It means adding executable permissions to the owners of all .sh files in the current directory.

  • chmod is the abbreviation of the permission management command change the permissions mode of a file
  • u stands for owner;
  • x represents execution permission;
  • “+” indicates adding permissions.
  • You can also specify a file separately, such as: chmod u+x abc.sh
  • Then start it with ./startup.sh.

Figure 2:

Insufficient permissions displayed.

Question 2

After startup, an error message appears saying that the file in the ***** directory cannot be found.

Problem Analysis: This problem occurs because multiple Context environments are configured in the server.xml file of Tomcat. However, no project is deployed in the specified directory.

Problem solution: Delete all Context in the server.xml file. Delete all deployed projects under the tomcat directory webapps and wtpwebapps. At this time, just start a separate ebank. Startup successful, access to 8080 successful.

Figure 3:

server.xml directory with Context.

Question 3

Add the war packaged by Maven to the tomcat server webapps. Then start it. But the error port is occupied.

Problem Analysis: This operation is performed without pausing the previous step. This causes the port to be occupied. But after pausing Tomcat directly, it still reports that the port is occupied

Problem solving: Use a more violent approach:
Query the ebank process ID: ps aux|grep tomcat
Kill the process directly: kill-9 PID Kill the tomcat process, and then it can be started normally Figure 4:

Port occupied error message

Question 4

Although it can be started normally at this time, an error is reported: java.lang.OutOfMemoryError: PermGen space (prompting memory overflow, which belongs to the memory overflow of the permanent area).

Problem analysis: Tomcat's memory parameters have not been set before. The currently deployed project occupies a large amount of memory and loads many classes. This results in insufficient memory in the permanent area.

Solution: Copy the catalina.sh file under tomcat's bin directory and modify it, and back up the original one. Find the cygwin=false position in the catalina.sh file and add the parameter in front of it. Note that the quotation marks should be included.
JAVA_OPTS="-Xms256m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=256m"
Replace the modified file in tomcat/bin.

Figure 5:

Heap memory overflow error message

Figure 6:

Modified content of catalina.sh file

Question 5

At this time, it is restarted, but it prompts that the catalina.sh file cannot be found?

Problem analysis: Because the catalina.sh execution file is called in the startup.sh execution file. Thereby starting the Tomcat service. Then use the command ll to view the bin directory. The problem was found that the catalina.sh file was no longer an executable file. (Not green) Problem solution: Use chmod u+x catalina.sh again to give it executable permissions.

Figure 7:

In the startup.sh file, call the catalina.sh execution file

Figure 8: The figure takes hello.sh as an example. (displayed in black, different from catalina.sh)

Distinguish whether it is an executable file

Question 6

The startup was successful, but the project could not be accessed in the browser, but access to 8080 was successful.

Problem analysis: It is found in the webapps directory of Tomcat that each War package has a version number after being decompressed by Tocmat (the war package is generated by Maven packaging and has a version number). Solution to the problem that the correct address accessed by the browser is without the version number: delete the project and rename the War package. Start again. So far all is successful Figure 8:

war project with version number in the webapps directory

Additional commands

Clear the log:

echo -n "" > ../logs/catalina.out
	Fixed syntax: echo -n "" >

Check the log size:

du -h ../logs/catalina.out
	Fixed syntax: du -h >

This is the end of this article about solving various problems in the process of deploying Tomcat on Linux and releasing projects. For more relevant content about deploying Tomcat on Linux, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Linux (center OS7) installs JDK, tomcat, mysql to build a java web project running environment
  • Detailed graphic tutorial on installing and uninstalling Tomcat8 on Linux
  • Steps to monitor Tomcat status and start it automatically using shell scripts under Linux
  • Install tomcat and deploy the website under Linux (recommended)
  • Linux (CentOS7) installs Tomcat and sets Tomcat as a startup item (taking tomcat8 as an example)
  • Install three or more tomcats under Linux system (detailed steps)
  • How to start and stop Tomcat service by writing shell script in Linux environment
  • How to change the tomcat port number in Linux

<<:  JS implements simple addition and subtraction of shopping cart effects

>>:  js implements form validation function

Recommend

HTML uncommon tags optgroup, sub, sup and bdo example code

Optgroup is used in the select tag to make the dro...

How to delete all contents in a directory using Ansible

Students who use Ansible know that Ansible only s...

Details of function nesting and closures in js

Table of contents 1. Scope 2. Function return val...

Docker installation and configuration steps for RabbitMQ

Table of contents Single-machine deployment Onlin...

How to safely shut down MySQL

When shutting down the MySQL server, various prob...

Solve the problem of OpenLayers 3 loading vector map source

1. Vector Map Vector graphics use straight lines ...

Summary of basic usage of js array

Preface Arrays are a special kind of object. Ther...

Detailed explanation of how to use CMD command to operate MySql database

First: Start and stop the mysql service net stop ...

Steps to change mysql character set to UTF8 under Linux system

Table of contents 1. Check the MySQL status in th...

Summary of Common Mistakes in Web Design

In the process of designing a web page, designers...

HTML weight loss Streamline HTML tags to create web pages

HTML 4 HTML (not XHTML), MIME type is text/html, ...

Examples of correct use of maps in WeChat mini programs

Table of contents Preface 1. Preparation 2. Actua...

Solve the problem of Syn Flooding in MySQL database

Syn attack is the most common and most easily exp...

Mysql timeline data to obtain the first three data of the same day

Create table data CREATE TABLE `praise_info` ( `i...