Next, I will install Java+Tomcat on Centos7. There are many articles on the Internet, and I have some problems in deployment. The following is an installation process I summarized myself! Install Java Environment First, we go to the Java official website to download JDK. Here I download the jdk1.8 version. https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html Click Accept License Agreement and select the version to download. You need to register an Oracle account to log in and download! Copy the downloaded jdk package to the Centos7 root directory. It is recommended to use WinSCP Create a Java installation directory Unzip the jdk package to the java installation directory Configuring environment variables export JAVA_HOME=/usr/local/java/jdk1.8.0_211 export CLASS_PATH="$JAVA_HOME/lib:$JAVA_HOME/jre/lib" export PATH=$PATH:$JAVA_HOME/bin Make the configuration take effect immediately Verify that the Java environment is configured successfully Install Tomcat environment Download the installation package from the official website: https://tomcat.apache.org/ Here I choose Tomcat8 Archives to view historical versions Here I choose version v8.5.5. Remember not to enter the src directory to download the installation package. You will encounter the problem of not finding bootstarp.jar in the bin directory. Enter the bin directory and download the code package. Unzip to the installation directory Creating a Soft Link cd /usr/local/ ln -sv apache-tomcat-8.5.5 tomcat Configuring environment variables CATALINA_BASE=/usr/local/tomcat PATH=$CATALINA_BASE/bin:$PATH export PATH CATALINA_BASE Make the configuration take effect Check the tomcat version status Enter the bin directory of tomcat Grant Permission View configuration information Start Tomcat service If the above content appears, it means success. Now visit ip:8080 to see Summarize The above is the graphic illustration of Java+Tomcat environment deployment and installation process introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: (MariaDB) Comprehensive explanation of MySQL data types and storage mechanisms
>>: JS Object constructor Object.freeze
This article will introduce an interesting pseudo...
When writing a Dockerfile, include an entrypoint ...
Table of contents 1. Install axios 2. Use of axio...
The powerful tool cgroup in the kernel can not on...
introduction Have you ever encountered a situatio...
As shown above, padding values are composite at...
Table of contents 1. Characteristics of JS 1.1 Mu...
Since its release in 2013, Docker has been widely...
A problem occurred when configuring a cluster. Or...
The MySQL version used in this example is mysql-8...
Step 1: Check the local Ethernet properties to se...
Docker daemon socket The Docker daemon can listen...
Friends who have bought space and built websites s...
First is the idea We use the <input type="...
By using Nginx virtual domain name configuration,...