This update briefly describes the installation of Tomcat and Apache. Install and set up Tomcat Reference: Digital Ocean https://www.digitalocean.com/community/tutorials/install-tomcat-9-ubuntu-1804 Highly suggest moving to reference when install. It provides detailed description. Install Java Create Tomcat user on Linux sudo groupadd tomcat sudo useradd -s /bin/false -g tomcat -d /opt/tomcat tomcat Download Tomcat Tomcat download https://tomcat.apache.org/whichversion.html (I’m using Tomcat 9) wget -url-get-from-download-page-in-tar-gz- sudo mkdir /opt/tomcat sudo tar xzvf apache-tomcat-*tar.gz -C /opt/tomcat --strip-components=1 Update Permission cd /opt/tomcat sudo chmod -R g+r conf sudo chmod g+x conf sudo chown -R tomcat webapps/ work/ temp/ logs/ Create systemd service file (Ubuntu service) sudo update-java-alternatives -l It shows Java Home sudo vi /etc/systemd/system/tomcat.service Edit E...