Detailed graphic tutorial on installing and uninstalling Tomcat8 on Linux

Detailed graphic tutorial on installing and uninstalling Tomcat8 on Linux

[ Linux installation of Tomcat8 ]

Uninstall Tomcat - Stop Tomcat first

# systemctl stop tomcat
# yum remove tomcat 

rpm installed can be removed with yum remove tomcat

Install Apache Tomcat8 using the open source image download from Central China Normal University of Science and Technology


# wget http://mirrors.hust.edu.cn/apache/tomcat/tomcat-8/v8.5.37/bin/apache-tomcat-8.5.37.tar.gz

Unzip Tomcat and delete the installation package - you can set the storage location you want when unzipping

# rm -rf apache-tomcat-8.5.37.tar.gz
# tar -vzxf apache-tomcat-8.5.37.tar.gz


Move Tomcat to /usr/local/ and rename it

# mv apache-tomcat-8.5.37 /usr/local/tomcat 

Start Tomcat

# cd /usr/local/tomcat/bin
# ./startup.sh


Check whether the Tomcat service is started

# ps -ef|grep tomcat

Shutdown Tomcat

# cd /usr/local/tomcat/bin
# ./shutdown.sh


Check Tomcat version

# cd /usr/local/tomcat/bin
# ./version.sh

server.xml configuration

# vim /usr/local/tomcat/conf/server.xml
<Connector executor="tomcatThreadPool" port="8080" 
    protocol="org.apache.coyote.http11.Http11NioProtocol"
    maxThreads="1000" minSpareThreads="100" maxSpareThreads="200"
    acceptCount="1000" disableUploadTimeout="true" connectionTimeout="20000"
    URIEncoding="UTF-8" enableLookups="false" compression="on"
    compressionMinSize="2048"
compressableMimeType="text/html,text/xml,text/javascript,text/css,text/plain,image/gif,image/jpg,image/png" redirectPort="8443" />


Set startup

Edit rc.local file

# vim /etc/rc.d/rc.local

Add the last line /root/apache-tomcat-8.5.37/bin/startup.sh

/usr/local/tomcat/bin/startup.sh

​​​​​​​​

Restart the server to take effect (the virtual machine will restart)

# reboot

Tomcat Directory Structure

webapps directory structure

Summarize

The above is a detailed graphic tutorial on how to install and uninstall Tomcat8 in Linux. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • cemtos 7 linux installation and uninstallation of tomcat 7 tutorial
  • How to uninstall and reinstall Tomcat (with pictures and text)

<<:  How to add file prefixes in batches in Linux

>>:  A brief summary of all encapsulation methods in Vue

Recommend

Ten Experiences in Web Design in 2008

<br />The Internet is constantly changing, a...

How to add vim implementation code examples in power shell

1. Go to Vim's official website to download t...

When MySQL is upgraded to 5.7, WordPress reports error 1067 when importing data

I recently upgraded MySQL to 5.7, and WordPress r...

Summary of four ways to introduce CSS (sharing)

1. Inline reference: used directly on the label, ...

How to build a Vue3 desktop application

In this article, we will look at how to develop a...

Detailed explanation of Mysql transaction isolation level read commit

View MySQL transaction isolation level mysql> ...

Example code for converting html table data to Json format

The javascript function for converting <table&g...

mysql solves the problem of finding records where two or more fields are NULL

Core code /*-------------------------------- Find...

MySQL data insertion optimization method concurrent_insert

When a thread executes a DELAYED statement for a ...

Distributed monitoring system Zabbix uses SNMP and JMX channels to collect data

In the previous article, we learned about the pas...

Detailed explanation of the difference between run/cmd/entrypoint in docker

In Dockerfile, run, cmd, and entrypoint can all b...

Native JS to implement login box email prompt

This article shares a native JS implementation of...

Basic usage of custom directives in Vue

Table of contents Preface text 1. Global Registra...