Skip to content

Instantly share code, notes, and snippets.

View guillearch's full-sized avatar

Guillermo Castellano guillearch

View GitHub Profile
@guillearch
guillearch / install-tomcat-8.5.31.sh
Last active June 10, 2019 07:48 — forked from Clivern/install-tomcat-8.5.14.sh
How to Install Apache Tomcat 8 on Ubuntu 16.04
#!/bin/bash
# For More Info http://clivern.com/how-to-install-apache-tomcat-8-on-ubuntu-16-04
sudo apt-get update
sudo apt-get install curl
sudo apt-get install unzip
cd /opt
curl -O http://apache.mirrors.ionfish.org/tomcat/tomcat-8/v8.5.31/bin/apache-tomcat-8.5.31.zip
sudo unzip apache-tomcat-8.5.31.zip
sudo mv apache-tomcat-8.5.31 tomcat