Install tomcat on Ubuntu and Ubuntu tomcat
1. Download the apache-tomcat-** .tar.gz file from the official website.
2. Create a folder (tomcat) in the local file and decompress the package in the folder. You do not need to use root:
Tar-zxvf/home/xcx/download/apache-tomcat-8.5.11.tar.gz
3. Enter the command to decompress the file and set all the files in tomcat to add read and write permissions:
chmod +xr -R *
4. Go to the conf folder of tomcat, find the tomcat-users.xml configuration file, add user information in it
<role rolename="manager-gui"/><user username="admin" password="3.1415926" roles="manager-gui"/>
5. Enable tomcat:
xcx@ubuntu-xcx:~/local/tomcat/apache-tomcat-8.5.11$ ./bin/startup.shUsing CATALINA_BASE: /home/xcx/local/tomcat/apache-tomcat-8.5.11Using CATALINA_HOME: /home/xcx/local/tomcat/apache-tomcat-8.5.11Using CATALINA_TMPDIR: /home/xcx/local/tomcat/apache-tomcat-8.5.11/tempUsing JRE_HOME: /usr/lib/jvm/java-8-oracleUsing CLASSPATH: /home/xcx/local/tomcat/apache-tomcat-8.5.11/bin/bootstrap.jar:/home/xcx/local/tomcat/apache-tomcat-8.5.11/bin/tomcat-juli.jarTomcat started.
6. Disable tomcat:
xcx@ubuntu-xcx:~/local/tomcat/apache-tomcat-8.5.11$ ./bin/shutdown.shUsing CATALINA_BASE: /home/xcx/local/tomcat/apache-tomcat-8.5.11Using CATALINA_HOME: /home/xcx/local/tomcat/apache-tomcat-8.5.11Using CATALINA_TMPDIR: /home/xcx/local/tomcat/apache-tomcat-8.5.11/tempUsing JRE_HOME: /usr/lib/jvm/java-8-oracleUsing CLASSPATH: /home/xcx/local/tomcat/apache-tomcat-8.5.11/bin/bootstrap.jar:/home/xcx/local/tomcat/apache-tomcat-8.5.11/bin/tomcat-juli.jar