Second, tomcat configuration (take Windows10 as an example)
1. To http://tomcat.apache.org download Download Tomcat7.0 corresponding version
The Windows system is best to download the zip package, and the Linux system is best to download the tar package.
It is best not to download the Tomcat installation files because the console command output is not visible when the installation file starts.
2. Unzip the corresponding zip file into any directory of the machine, and I will unzip it to the following installation:
D:\apache-tomcat-7.0.67
3. Configure the relevant environment variables, because I have previously configured the Java Development time environment, namely JDK. So the java_home no longer have to be configured
1) environment variable 1:catalina_home, environment variable value: D:\apache-tomcat-7.0.67
(The environment variable value is the corresponding zip file to extract the directory)
2) environment variable 2:path D:\apache-tomcat-7.0.67\bin
4. Launch Tomcat into the bin folder under the Tomcat decompression directory for my machine: The D:\apache-tomcat-7.0.67\bin directory has a Startup.bat script that executes the corresponding program to start Tomcat.
Installing Tomcat in Eclipse