How to install Tomcat 8.5 on Debian 8
Introduction Apache Tomcat is a Java Servlet Container which implements several Java EE specifications including JavaServer Pages (JSP), Java Servlet, WebSocket and Java EL. It also provides an HTTP web server environment in which Java code can run. It’s distributed under the Apache License 2.0. This tutorial explains how to install and configure Tomcat 8.5.11 on Debian 8 . Getting started Install Java The first thing to do is to install python-software-properties , for managing repository: # apt install python-software-properties -y Next, add required repository: # echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee /etc/apt/sources.list.d/webupd8team-java.list # echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list # apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886 # apt update Now, you can install...