Skip to content
dabuntu edited this page Jan 5, 2016 · 1 revision

##Prerequisites :

Linux Operating System Java 8
Mysql
Apache Kafka
Zookeeper
mongoDB
tomcat 8

##Installation : Mysql: https://dev.mysql.com/doc/refman/5.1/en/linux-installation.html Apache Kafka: http://kafka.apache.org/documentation.html Zookeeper: Comes as a part of kafka. No separate installation needed. MongoDB: https://docs.mongodb.org/manual/administration/install-on-linux/ Tomcat 8: https://tomcat.apache.org/tomcat-8.0-doc/setup.html#Introduction

##Setup

create a database called dbeventshop in mysql
create database dbeventshop;
Apply db SQL script.
sudo mysql -uroot -proot dbeventshop < dbeventshop.sql
This sql file is a part of code set.

Download the code from repository.
Import the project as maven project.
Download maven dependancies.
Build the project.
Deploy the war file in tomcat

Clone this wiki locally