Shell script one-click installation-----tomcat service

theory:

Detailed theory
Tomcat server is a free and open source web application server. It is a lightweight application server. It is commonly used in small and medium-sized systems and where there are not many concurrent users. It is the first choice for developing and debugging JSP programs. For a beginner, you can think of it this way. When an Apache server is configured on a machine, it can be used to respond to HTML (an application under the Standard Universal Markup Language) page access request. In fact, Tomcat is an extension of the Apache server, but it runs independently at runtime, so when you run tomcat, it actually runs as a separate process from Apache.

lab environment:

#!/bin/bash
echo "####################################

Guess you like

Origin blog.csdn.net/qq_50573146/article/details/112385105