Software Installation

Process will be described in Ubuntu Terminal (Ctrl+Alt+T), and all following code you need input there.

Install Git

sudo apt-get install git-all

Install Java

Project uses Java 1.8, so we are recommended install Oracle JDK 1.8.

sudo add-apt-repository ppa:webupd8team/java #Add repository to your list

sudo apt-get update

sudo apt-get install oracle-java8-installer

Then follow instruction in a console.

Install MySQL server and client

sudo apt install mysql-server mysql-client

sudo apt-get install libmysql-java #jdbc connectors

Enter configuration properties such as password.

Install Maven

sudo apt-get install maven

Download Tomcat server

You can download it from the official site

Or use this one: apache-tomcat-8.5.8.tar.gz.

Extract Tomcat folder from the archive in the location you want.

Note

In this Tomcat instance configured user admin (password=admin) with the admin authorities.