...
This guide covers downloading and installing Tomcat 8 9 on an Ubuntu Linux server.
Prerequisites
You have installed Ubuntu 16 Linux.You can login as a non-root user with sudo access.
...
Code Block |
---|
cd /tmp curl -O http://mirror.ox.ac.uk/sites/rsync.apache.org/tomcat/tomcat-89/v8v9.50.1138/bin/apache-tomcat-89.50.1138.tar.gz |
Install Tomcat
Unpack the tomcat tar.gz file into /opt/tomcat.
Code Block |
---|
sudo mkdir /opt/tomcat cd /opt/tomcat sudo tar xvf /tmp/apache-tomcat-89*tar.gz --strip-components=1 |
...