ELK. Elasticsearch Logstash - Kibana

Size: px
Start display at page:

Download "ELK. Elasticsearch Logstash - Kibana"

Transcription

1 ELK Elasticsearch Logstash - Kibana

2 Welcome to Infomart Infomart is a media monitoring app which monitors both Social and Traditional Media. Social media includes Twitter, Facebook, Youtube, Wordpress, Tumblr, Blogs, Forums and Web news. Traditional Media includes all the major newspapers, magazines, broadcasts, radio etc from Canada, UK, US and International. We are using Elasticsearch for storing over 500 million documents.

3 Meetup Goals Install Elasticsearch: (For storing logs) Install Kibana 4: (Dashboard for discover and visualizing logs) Install and configure Nginx: (For kibana) Install Logstash Server: (Processing logs before storing) Install Logstash Forwarder: (Forwards server s log on which it is installed to Logstash Server) Create Dashboards in Kibana to visualize these logs.

4 Meetup Goals Logstash Forwarder Logstash Forwarder Logstash Server Elastic Search Kibana Logstash Forwarder

5 Install Elasticsearch sudo add-apt-repository -y ppa:webupd8team/java sudo apt-get update sudo apt-get -y install oracle-java8-installer wget -O - sudo apt-key add - echo 'deb stable main' sudo tee /etc/apt/sources.list.d/elasticsearch.list sudo apt-get update

6 Install Elasticsearch(Cont ) sudo apt-get -y install elasticsearch=1.4.4 sudo service elasticsearch restart sudo update-rc.d elasticsearch defaults cd /usr/share/elasticsearch./bin/plugin -i elasticsearch/marvel/latest

7 Install Elasticsearch(Cont ) Success: IPADDRESS:9200 should return you similar response

8 Install Kibana 4 cd /opt wget linux-x64.tar.gz tar xvf kibana linux-x64.tar.gz rm kibana linux-x64.tar.gz mv kibana linux-x64/ kibana vim kibana/config/kibana.yml host: "localhost"

9 Install Kibana 4(Cont ) cd /etc/init.d sudo wget 8b15ac909aed214ad04a/raw/ bce61d85643c2dcdfbc2728c55a41dab444dca20/kibana4 sudo chmod +x /etc/init.d/kibana4 sudo update-rc.d kibana4 defaults 96 9 sudo service kibana4 start

10 Install and configure nginx(kibana) sudo apt-get install nginx apache2-utils sudo htpasswd -c /etc/nginx/htpasswd.users USERNAME sudo vi /etc/nginx/sites-available/default server { listen 80; server_name localhost; auth_basic "Restricted Access"; auth_basic_user_file /etc/nginx/htpasswd.users; location / { proxy_pass proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } }

11 Install Kibana 4(Cont ) Success: IPADDRESS:80 should return you similar response

12 Install Logstash Server echo 'deb stable main' sudo tee /etc/apt/sources.list.d/logstash.list sudo apt-get update sudo apt-get install logstash vim /etc/ssl/openssl.cnf Insert after v3_ca subjectaltname = IP:IPADDRESS

13 Install Logstash Server(Cont ) cd /etc/ssl/ sudo openssl req -config /etc/ssl/openssl.cnf -x509 -days batch -nodes -newkey rsa: keyout private/logstash-forwarder.key -out certs/logstash-forwarder.crt vim /etc/logstash/conf.d/01-lumberjack-input.conf input { lumberjack { port => 5000 type => "logs" ssl_certificate => "/etc/ssl/certs/logstash-forwarder.crt" ssl_key => "/etc/ssl/private/logstash-forwarder.key" } } vim /etc/logstash/conf.d/30-lumberjack-output.conf output { elasticsearch { host => localhost } stdout { codec => rubydebug } }

14 Install Logstash Server(Cont ) cd /etc/logstash sudo curl -O " gunzip GeoLiteCity.dat.gz vim /etc/logstash/conf.d/12-apache.conf filter { if [type] == "apache-access" { grok { match => { "message" => "%{COMBINEDAPACHELOG}" } } date { match => [ "timestamp", "dd/mmm/yyyy:hh:mm:ss Z" ] } geoip { source => "clientip" target => "geoip" database => "/etc/logstash/geolitecity.dat" add_field => [ "[geoip][coordinates]", "%{[geoip][longitude]}" ] add_field => [ "[geoip][coordinates]", "%{[geoip][latitude]}" ] } mutate { convert => [ "[geoip][coordinates]", "float"] } } } sudo service logstash restart

15 Install Logstash Forwarder Copy the cert from logstash server to logstash forwarder client server. ("/etc/ssl/ certs/logstash-forwarder.crt ) echo 'deb stable main' sudo tee /etc/apt/sources.list.d/logstashforwarder.list wget -O - sudo aptkey add - sudo apt-get update sudo apt-get install logstash-forwarder

16 Install Logstash Forwarder(Cont ) sudo vi /etc/logstash-forwarder.conf "servers": [ "IPADDRESS OF LOGSTAH SERVER:5000" ], "timeout": 15, "ssl ca": "/etc/ssl/certs/logstash-forwarder.crt { "paths": [ "/var/log/apache2/access*.log" ], "fields": { "type": "apache-access" } } sudo service logstash-forwarder restart Success: IPADDRESS:9200/_plugin/marvel should show indexed data

17 Kibana 4 Settings Discover Visualize Dashboard

18 Kibana 4 Kibana 4 Demo

19

20

21

22

23

24 Special Thanks To Warren Gedge Julia Andrews Amit Sheldon Sawchuk Katrina Zivanovich Adam Hutchinson Jose Bento Neil

25 Thank You

Bitnami ELK for Huawei Enterprise Cloud

Bitnami ELK for Huawei Enterprise Cloud Bitnami ELK for Huawei Enterprise Cloud Description The ELK stack is a log management platform consisting of Elasticsearch (deep search and data analytics), Logstash (centralized logging, log enrichment

More information

Bro + ELK. BroCon 2015 Michael Pananen Vigilant Technology Solu<ons

Bro + ELK. BroCon 2015 Michael Pananen Vigilant Technology Solu<ons Bro + ELK BroCon 2015 Michael Pananen Vigilant Technology Solu

More information

About the Tutorial. Audience. Prerequisites. Copyright and Disclaimer. Logstash

About the Tutorial. Audience. Prerequisites. Copyright and Disclaimer. Logstash About the Tutorial is an open-source, centralized, events and logging manager. It is a part of the ELK (ElasticSearch,, Kibana) stack. In this tutorial, we will understand the basics of, its features,

More information

LAB :: Secure HTTP traffic using Secure Sockets Layer (SSL) Certificate

LAB :: Secure HTTP traffic using Secure Sockets Layer (SSL) Certificate LAB :: Secure HTTP traffic using Secure Sockets Layer (SSL) Certificate In this example we are using apnictraining.net as domain name. # super user command. $ normal user command. N replace with your group

More information

T.A.D / ABS - Installation

T.A.D / ABS - Installation T.A.D / ABS - Installation Technical Architecture Document / Installation Topic : This document aims to expose the architecture to set up for the installation of ABS. It exposes all the tools that make

More information

The ELK Stack. Elastic Logging. TPS Services Ltd. Copyright 2017 Course Title

The ELK Stack. Elastic Logging. TPS Services Ltd. Copyright 2017 Course Title The ELK Stack Elastic Logging Content 1.Log analysis 2.The ELK stack 3.Elasticsearch Lab 1 4.Kibana phase 1 Lab 2 5.Beats Lab 3 6.Kibana Lab 4 7.Logstash & Filebeat Lab 5 8.Enhanced Logstash Lab 6 9.Kibana

More information

UCServer Webservice Release. Best Practice

UCServer Webservice Release. Best Practice UCServer Webservice Release Best Practice Legal Information/Imprint The information contained in this document reflects the state of knowledge at the time the document was created. Errors and subsequent

More information

BUILDING EFFECTIVE DATABASE BACKUP AND RECOVERY MONITORING USING ELASTIC STACK

BUILDING EFFECTIVE DATABASE BACKUP AND RECOVERY MONITORING USING ELASTIC STACK BUILDING EFFECTIVE DATABASE BACKUP AND RECOVERY MONITORING USING ELASTIC STACK September 2017 AUTHOR: Yasmine Nasri SUPERVISOR: Sebastien Masson CERN IT-DB Group CERN openlab Summer Student Report 2017

More information

EveBox Documentation. Jason Ish

EveBox Documentation. Jason Ish Jason Ish May 29, 2018 Contents: 1 Installation 1 2 Server 3 2.1 Running................................................. 3 2.2 Oneshot Mode.............................................. 4 2.3 Authentication..............................................

More information

How to force automatic removal of deleted files in nextcloud

How to force automatic removal of deleted files in nextcloud How to force automatic removal of deleted files in nextcloud Nextcloud will get rid of files that have been deleted for 30 days. However in reality these files will remain on the server until such a time

More information

INSIGHTS INTO ECS DATA UTILIZATION USING OPEN SOURCE TOOLS

INSIGHTS INTO ECS DATA UTILIZATION USING OPEN SOURCE TOOLS INSIGHTS INTO ECS DATA UTILIZATION USING OPEN SOURCE TOOLS Analyzing ECS Access Logs with Elasticsearch, Logstash, and Kibana (ELK) ABSTRACT This white paper explains how administrators can better understand

More information

EveBox Documentation. Release. Jason Ish

EveBox Documentation. Release. Jason Ish EveBox Documentation Release Jason Ish Jan 25, 2018 Contents: 1 Installation 1 2 Server 3 2.1 Running................................................. 3 2.2 Oneshot Mode..............................................

More information

By: Jeeva S. Chelladhurai

By: Jeeva S. Chelladhurai CI CD By: Jeeva S. Chelladhurai Tools SCM: www.github.com CI/CD: Jenkins 2.0 Important Plugins: Pipeline (for Jenkinsfile), git, github, SSH Slaves (for build slave) Platform: docker Container Orchestration:

More information

OSSEC Wazuh documentation

OSSEC Wazuh documentation OSSEC Wazuh documentation Release 0.1 Wazuh, Inc. Oct 30, 2017 Contents 1 About this documentation 1 2 Installation guide 3 2.1 OSSEC HIDS.............................................. 3 2.2 Wazuh HIDS...............................................

More information

Lab Exercises: Deploying, Managing, and Leveraging Honeypots in the Enterprise using Open Source Tools

Lab Exercises: Deploying, Managing, and Leveraging Honeypots in the Enterprise using Open Source Tools Lab Exercises: Deploying, Managing, and Leveraging Honeypots in the Enterprise using Open Source Tools Fill in the details of your MHN Server info. If you don t have this, ask your instructor. These details

More information

LET S ENCRYPT WITH PYTHON WEB APPS. Joe Jasinski Imaginary Landscape

LET S ENCRYPT WITH PYTHON WEB APPS. Joe Jasinski Imaginary Landscape LET S ENCRYPT WITH PYTHON WEB APPS Joe Jasinski Imaginary Landscape SSL / TLS WHY USE SSL/TLS ON YOUR WEB SERVER? BROWSERS ARE MANDATING IT Firefox 51 and Chrome 56 Non-HTTPS Pages with Password/CC Forms

More information

Installation and Usage Guide

Installation and Usage Guide Installation and Usage Guide Release 2.4 May 2016 Table of contents 1 Overview... 1 2 Getting Started... 2 2.1 Installation... 2 2.2 Appliance Import... 3 Virtualbox... 3 VMware... 4 Logging in to the

More information

Are you visualizing your logfiles? Bastian Widmer

Are you visualizing your logfiles? Bastian Widmer Are you visualizing your logfiles? Bastian Widmer / @dasrecht Visualizing Logfiles with ELK Stack Bastian Widmer / @dasrecht Hola Com estàs? Bastian Widmer @dasrecht / bastianwidmer.ch DrupalCI: Modernizing

More information

Tungsten Dashboard for Clustering. Eric M. Stone, COO

Tungsten Dashboard for Clustering. Eric M. Stone, COO Tungsten Dashboard for Clustering Eric M. Stone, COO In this training session 1. Tungsten Dashboard Welcome 2. Tungsten Dashboard Overview 3. Tungsten Dashboard Prerequisites 4. Tungsten Dashboard Security

More information

User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline

User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline Documentation Dragonfly QuickHMI with Raspberry Pi Version 6.0 User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline Indi.Systems GmbH Universitätsallee 23 D-28359 Bremen Tel.

More information

شرکت توسعه ارتباطات پردیس پارس. owncloud. The last file sharing platform you'll ever need

شرکت توسعه ارتباطات پردیس پارس. owncloud. The last file sharing platform you'll ever need شرکت توسعه ارتباطات پردیس پارس owncloud The last file sharing platform you'll ever need. Explore the Features: Click Sync and Share Your Data, with Ease A Safe Home for All Your Data Your Data is Where

More information

Android SDK under Linux

Android SDK under Linux Android SDK under Linux Jean-Francois Messier Android Outaouais jf@messier.ca Abstract This is a tutorial about installing the various components required to have an actual Android development station

More information

ELK for Enterprise IR Visibility

ELK for Enterprise IR Visibility ELK for Enterprise IR Visibility Mark Goudie, Security Consulting Director Barry Anderson, Security Architect Agenda Introduction Security Challenges IR and Issues ELK Inputs Enrichment Cloud Integration

More information

ELK Stack Elasticsearch, Logstash, Kibana

ELK Stack Elasticsearch, Logstash, Kibana www.netways.de ELK Stack Elasticsearch, Logstash, Kibana Munich 19.10.2015 INTRODUCTION Bernd Erk CEO at NETWAYS GmbH Co-Founder Icinga @gethash info@netways.de NETWAYS GmbH Open Source Service Provider

More information

Portainer Documentation

Portainer Documentation Portainer Documentation Release 1.16.1 Portainer.io Jan 23, 2018 Contents 1 Deployment 3 1.1 Quick start................................................ 3 1.2 Manage a new Docker environment...................................

More information

IEMS 5722 Mobile Network Programming and Distributed Server Architecture Semester 2

IEMS 5722 Mobile Network Programming and Distributed Server Architecture Semester 2 IEMS 5722 Mobile Network Programming and Distributed Server Architecture 2016-2017 Semester 2 Assignment 3: Developing a Server Application Due Date: 10 th March, 2017 Notes: i.) Read carefully the instructions

More information

Bitnami Pimcore for Huawei Enterprise Cloud

Bitnami Pimcore for Huawei Enterprise Cloud Bitnami Pimcore for Huawei Enterprise Cloud Description Pimcore is the open source platform for managing digital experiences. It is the consolidated platform for web content management, product information

More information

Running Kmeans Spark on EC2 Documentation

Running Kmeans Spark on EC2 Documentation Running Kmeans Spark on EC2 Documentation Pseudo code Input: Dataset D, Number of clusters k Output: Data points with cluster memberships Step1: Read D from HDFS as RDD Step 2: Initialize first k data

More information

Using Fluentd as an alternative to Splunk

Using Fluentd as an alternative to Splunk Using Fluentd as an alternative to Splunk As infrastructure within organizations grows in size and the number of hosts, the cost of Splunk may become prohibitive. I created this document to demonstrate,

More information

Exercises Basics of Web Security Experiential Learning Workshop

Exercises Basics of Web Security Experiential Learning Workshop Exercises Basics of Web Security Experiential Learning Workshop 1 General Guidelines 1. Make a team of two unless stated otherwise. 2. For each exercise, use wireshark capture to verify contents 3. Ensure

More information

Real World Experiences of Running Docker in Development and OcelotUproar.com / Katacoda.com

Real World Experiences of Running Docker in Development and OcelotUproar.com / Katacoda.com Real World Experiences of Running Docker in Development and Production @Ben_Hall Ben@BenHall.me.uk OcelotUproar.com / Katacoda.com @Ben_Hall / Blog.BenHall.me.uk Tech Support > Tester > Developer > Founder

More information

Elastic search in CA PPM

Elastic search in CA PPM International Journal of Management, IT & Engineering Vol. 7 Issue 11, November 2017, ISSN: 2249-0558 Impact Factor: 7.119 Journal Homepage: Double-Blind Peer Reviewed Refereed Open Access International

More information

KopanoLibreOffice. Release 1.0. Kopano BV

KopanoLibreOffice. Release 1.0. Kopano BV KopanoLibreOffice Release 1.0 Kopano BV Sep 26, 2018 Contents 1 Introduction 2 2 Installation 3 2.1 System requirements......................................... 3 2.2 Configuring the Kopano package repositories............................

More information

Expedition. Hardening Guide Version Palo Alto Networks, Inc.

Expedition. Hardening Guide Version Palo Alto Networks, Inc. Expedition Hardening Guide Version 1.0 1 Palo Alto Networks, Inc. www.paloaltonetworks.com 2018 Palo Alto Networks, Inc. Palo Alto Networks is a registered trademark of Palo Alto Networks. You can find

More information

Parallel Programming

Parallel Programming Parallel Programming Installing Eclipse Parallel Tools Platform (PTP) (Linux Distributions) Preliminaries - Install Java Author B. Wilkinson - Modification date May 29, 2015 Java is needed for the Eclipse

More information

Corralling logs with ELK

Corralling logs with ELK Corralling logs with ELK Open Source Log Analytics Mark Walkom @warkolm mark.walkom@elasticsearch.com Copyright Elasticsearch 2015. 2014. Copying, publishing and/or distributing without written permission

More information

almir Documentation Release Domen Kožar

almir Documentation Release Domen Kožar almir Documentation Release 0.1.8.0 Domen Kožar January 22, 2014 Contents i ii almir Documentation, Release 0.1.8.0 Author Domen Kožar Source code github.com project Bug tracker github.com

More information

Bitnami ez Publish for Huawei Enterprise Cloud

Bitnami ez Publish for Huawei Enterprise Cloud Bitnami ez Publish for Huawei Enterprise Cloud Description ez Publish is an Enterprise Content Management platform with an easy to use Web Content Management System. It includes role-based multi-user access,

More information

with ElasticSearch, Logstash and Kibana

with ElasticSearch, Logstash and Kibana Analyse logs with ElasticSearch, Logstash and Kibana Clément OUDOT @clementoudot Founded in 1999 >100 persons Montréal, Quebec City, Ottawa, Paris ISO 9001:2004 / ISO 14001:2008 contact@savoirfairelinux.com

More information

Setting up the Apache Web Server

Setting up the Apache Web Server 1 Setting up the Apache Web Server The Apache Web Server (Hyper Text Transfer Protocol) is the most popular web server available. The project gained popularity with Linux in the 1990 s as they teamed up

More information

Bitnami Re:dash for Huawei Enterprise Cloud

Bitnami Re:dash for Huawei Enterprise Cloud Bitnami Re:dash for Huawei Enterprise Cloud Description Re:dash is an open source data visualization and collaboration tool. It was designed to allow fast and easy access to billions of records in all

More information

2. Installing OpenBiblio 1.0 on a Windows computer

2. Installing OpenBiblio 1.0 on a Windows computer Table of Contents Installing OpenBiblio 1. System requirements... 1 2. Installing OpenBiblio 1.0 on a Windows computer... 1 2.1. Install prerequisite software... 1 2.2. Install OpenBiblio... 2 2.3. Using

More information

COLD WALLET + MASTERNODE SETUP ON LINUX

COLD WALLET + MASTERNODE SETUP ON LINUX COLD WALLET + MASTERNODE SETUP ON LINUX This tutorial shows the steps required to setup your Magnet masternode on a Linux system while running a local cold wallet (Windows system here). Let s get started!

More information

Bitnami Coppermine for Huawei Enterprise Cloud

Bitnami Coppermine for Huawei Enterprise Cloud Bitnami Coppermine for Huawei Enterprise Cloud Description Coppermine is a multi-purpose, full-featured web picture gallery. It includes user management, private galleries, automatic thumbnail creation,

More information

Easy PostgreSQL Clustering with Patroni. Ants Aasma

Easy PostgreSQL Clustering with Patroni. Ants Aasma Easy PostgreSQL Clustering with Patroni Introduction About me Support engineer at Cybertec Helping others run PostgreSQL for 5 years. Helping myself run PostgreSQL since 7.4 days. What are we going to

More information

Ingest Node: (re)indexing and enriching documents within

Ingest Node: (re)indexing and enriching documents within Ingest Node: (re)indexing and enriching documents within Elasticsearch @lucacavanna # Agenda 1 Why ingest node? 2 How does it work? 3 Where can it be used? 2 # Why ingest node? # I just want to tail a

More information

Application monitoring with BELK. Nishant Sahay, Sr. Architect Bhavani Ananth, Architect

Application monitoring with BELK. Nishant Sahay, Sr. Architect Bhavani Ananth, Architect Application monitoring with BELK Nishant Sahay, Sr. Architect Bhavani Ananth, Architect Why logs Business PoV Input Data Analytics User Interactions /Behavior End user Experience/ Improvements 2017 Wipro

More information

Powering Monitoring Analytics with ELK stack

Powering Monitoring Analytics with ELK stack Powering Monitoring Analytics with ELK stack Abdelkader Lahmadi, Frédéric Beck To cite this version: Abdelkader Lahmadi, Frédéric Beck. Powering Monitoring Analytics with ELK stack. 9th International Conference

More information

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Description ProcessMaker is an easy-to-use, open source workflow automation and Business Process Management platform, designed so Business

More information

Bitnami OSQA for Huawei Enterprise Cloud

Bitnami OSQA for Huawei Enterprise Cloud Bitnami OSQA for Huawei Enterprise Cloud Description OSQA is a question and answer system that helps manage and grow online communities similar to Stack Overflow. First steps with the Bitnami OSQA Stack

More information

Technical Manual(TM)

Technical Manual(TM) Technical Manual(TM) Image Processing Platform Team04 Name First Role Second Role Third Role Hao Wu Requirements Engineer Software Architect Implementer Junran Liu Operational Concept Engineer Software

More information

Ingest. David Pilato, Developer Evangelist Paris, 31 Janvier 2017

Ingest. David Pilato, Developer Evangelist Paris, 31 Janvier 2017 Ingest David Pilato, Developer Evangelist Paris, 31 Janvier 2017 Data Ingestion The process of collecting and importing data for immediate use in a datastore 2 ? Simple things should be simple. Shay Banon

More information

Ingest. Aaron Mildenstein, Consulting Architect Tokyo Dec 14, 2017

Ingest. Aaron Mildenstein, Consulting Architect Tokyo Dec 14, 2017 Ingest Aaron Mildenstein, Consulting Architect Tokyo Dec 14, 2017 Data Ingestion The process of collecting and importing data for immediate use 2 ? Simple things should be simple. Shay Banon Elastic{ON}

More information

Bitnami Dolibarr for Huawei Enterprise Cloud

Bitnami Dolibarr for Huawei Enterprise Cloud Bitnami Dolibarr for Huawei Enterprise Cloud Description Dolibarr is an open source, free software package for small and medium companies, foundations or freelancers. It includes different features for

More information

SAP Business One Components High Availability Guide, Version for SAP HANA

SAP Business One Components High Availability Guide, Version for SAP HANA ADMINISTRATION GUIDE CUSTOMER SAP Business One, version for SAP HANA Document Version: 1.5 2018-04-24 SAP Business One Components High Availability Guide, Version for SAP HANA 2019 SAP SE or an SAP affiliate

More information

We want to install putty, an ssh client on the laptops. In the web browser goto:

We want to install putty, an ssh client on the laptops. In the web browser goto: We want to install putty, an ssh client on the laptops. In the web browser goto: www.chiark.greenend.org.uk/~sgtatham/putty/download.html Under Alternative binary files grab 32 bit putty.exe and put it

More information

Bitnami JFrog Artifactory for Huawei Enterprise Cloud

Bitnami JFrog Artifactory for Huawei Enterprise Cloud Bitnami JFrog Artifactory for Huawei Enterprise Cloud Description JFrog Artifactory is a Binary Repository Manager for Maven, Ivy, Gradle modules, etc. Integrates with CI servers for fully traceable builds.

More information

Bitnami Open Atrium for Huawei Enterprise Cloud

Bitnami Open Atrium for Huawei Enterprise Cloud Bitnami Open Atrium for Huawei Enterprise Cloud Description Open Atrium is designed to help teams collaborate by providing an intranet platform that includes a blog, a wiki, a calendar, a to do list, a

More information

Bitnami TestLink for Huawei Enterprise Cloud

Bitnami TestLink for Huawei Enterprise Cloud Bitnami TestLink for Huawei Enterprise Cloud Description TestLink is test management software that facilitates software quality assurance. It offers support for test cases, test suites, test plans, test

More information

Bitnami ERPNext for Huawei Enterprise Cloud

Bitnami ERPNext for Huawei Enterprise Cloud Bitnami ERPNext for Huawei Enterprise Cloud Description ERPNext is an open source, web based application that helps small and medium sized business manage their accounting, inventory, sales, purchase,

More information

INTRODUCTION. To avoid the PHP7 conflicts use this OS image: STEP 1 - Parts List:

INTRODUCTION. To avoid the PHP7 conflicts use this OS image:   STEP 1 - Parts List: INTRODUCTION These are enhanced instruction set to install RaspberryPints on a Raspberry Pi 2 Model B with use of an AlaMode card and Flow Meters from AdaFruit.com. I started with instruction set here:

More information

Buzztouch Server 2.0 with Amazon EC2

Buzztouch Server 2.0 with Amazon EC2 Buzztouch Server 2.0 with Amazon EC2 This is for those that want a step by step instructions on how to prepare an Amazon's EC2 instance for the Buzztouch server. This document only covers the amazon EC2

More information

Remote GUI access to a Linux computer using Tightvnc

Remote GUI access to a Linux computer using Tightvnc Remote GUI access to a Linux computer using Tightvnc The command line is a great way to manage a remote Linux computer if you don't mind typing in commands, but sometimes you need to be able to view a

More information

Bitnami Piwik for Huawei Enterprise Cloud

Bitnami Piwik for Huawei Enterprise Cloud Bitnami Piwik for Huawei Enterprise Cloud Description Piwik is a real time web analytics software program. It provides detailed reports on website visitors: the search engines and keywords they used, the

More information

Managing Certificates

Managing Certificates Loading an Externally Generated SSL Certificate, page 1 Downloading Device Certificates, page 4 Uploading Device Certificates, page 6 Downloading CA Certificates, page 8 Uploading CA Certificates, page

More information

tailon Documentation Release Georgi Valkov

tailon Documentation Release Georgi Valkov tailon Documentation Release 1.3.0 Georgi Valkov Nov 21, 2017 Contents 1 Screenshots 3 2 Installation 7 3 Quick start 9 3.1 Tailon................................................... 9 4 Reverse proxy

More information

Docker Swarm installation Guide

Docker Swarm installation Guide Docker Swarm installation Guide How to Install and Configure Docker Swarm on Ubuntu 16.04 Step1: update the necessary packages for ubuntu Step2: Install the below packages to ensure the apt work with https

More information

Angular from the Beginning

Angular from the Beginning from the Beginning EMEA PUG Challenge, Prague Introduction Robert Prediger 25 years experience in PROGRESS 17 years experience in web development 8 years experience in Node.js robert.prediger@web4biz.de

More information

Stats of Web Server types

Stats of Web Server types APACHE HTTP SERVER About Apache Apache http server project http://httpd.apache.org Apache foundation started to support the web server project, but now extends to a multitude of other projects. Stats of

More information

Installing Open Project on Ubuntu AWS with Apache and Postgesql

Installing Open Project on Ubuntu AWS with Apache and Postgesql Installing Open Project on Ubuntu AWS with Apache and Postgesql Contents Installing Open Project on Ubuntu AWS with Apache and Postgesql... 1 Add new ports to your security group... 2 Update your system...

More information

Illustrated Steps to create greggroeten.net with AWS

Illustrated Steps to create greggroeten.net with AWS Illustrated Steps to create greggroeten.net with AWS Screenshots of each step Table of Contents 1. CREATE VPC 10.10.0/16.... 3 2. CREATE 1 PUBLIC SUBNET IN DEFAULT AZ, EX BELOW... 4 3. CREATE IGW, ATTACH

More information

Bitnami Tiny Tiny RSS for Huawei Enterprise Cloud

Bitnami Tiny Tiny RSS for Huawei Enterprise Cloud Bitnami Tiny Tiny RSS for Huawei Enterprise Cloud Description Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location,

More information

CazCoin VPS Masternode Setup May 2018

CazCoin VPS Masternode Setup May 2018 VPS Masternode Setup May 2018 VPS Masternode Setup May 2018 Contents 1. Introduction... 3 2. Requirements... 3 3. Block Rewards?... 4 4. VPS Preparation... 4 5. Local Wallet Setup... 5 6. Edit Local Config

More information

QMetry 7 Installation Guide - Linux Platform

QMetry 7 Installation Guide - Linux Platform QMetry 7 Installation Guide - Linux Platform 1 Introduction 2 Pre-requisites 2.1 Hardware Requirements 2.2 Software Requirements 2.2.1 Set JAVA_HOME and PATH on Linux 2.2.2 Set Java Cryptography Extension

More information

Java Architectures A New Hope. Eberhard Wolff

Java Architectures A New Hope. Eberhard Wolff Java Architectures A New Hope Eberhard Wolff http://ewolff.com What happens with a talk titled like this? Architecture of Enterprise Java Apps How can I implement a new feature??? ! ECommerce System

More information

Developing and Testing Java Microservices on Docker. Todd Fasullo Dir. Engineering

Developing and Testing Java Microservices on Docker. Todd Fasullo Dir. Engineering Developing and Testing Java Microservices on Docker Todd Fasullo Dir. Engineering Agenda Who is Smartsheet + why we started using Docker Docker fundamentals Demo - creating a service Demo - building service

More information

Bitnami Moodle for Huawei Enterprise Cloud

Bitnami Moodle for Huawei Enterprise Cloud Bitnami Moodle for Huawei Enterprise Cloud Description Moodle is a Course Management System that is designed using sound pedagogical principles to help educators create effective online learning communities.

More information

In this brief tutorial, we will be explaining the basics of Elasticsearch and its features.

In this brief tutorial, we will be explaining the basics of Elasticsearch and its features. About the Tutorial is a real-time distributed and open source full-text search and analytics engine. It is used in Single Page Application (SPA) projects. is open source developed in Java and used by many

More information

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment NetBrain Integrated Edition 7.1 Upgrade Instructions Two-Server Deployment Version 7.1a Last Updated 2018-09-04 Copyright 2004-2018 NetBrain Technologies, Inc. All rights reserved. Contents 1. Upgrading

More information

syslog-ng Apache Kafka destination

syslog-ng Apache Kafka destination syslog-ng Apache Kafka destination Release 0.1.11 Julien Anguenot Aug 23, 2017 Contents 1 syslog-ng-mod-python Apache Kafka destination 3 2 librdkafka installation 5 2.1 DEB packages via apt..........................................

More information

Bitnami Trac for Huawei Enterprise Cloud

Bitnami Trac for Huawei Enterprise Cloud Bitnami Trac for Huawei Enterprise Cloud Description Trac is an enhanced wiki and issue tracking system for software development projects. It provides interfaces to Subversion and Git, an integrated Wiki

More information

Configure Sensu and other Actions to Register Clients

Configure Sensu and other Actions to Register Clients Configure Sensu and other Actions to Register Clients Contents Introduction Prerequisites Requirements Components Used Background Information Configure Install Epel Repository Install Erlang Install Redis,

More information

Bitnami Mantis for Huawei Enterprise Cloud

Bitnami Mantis for Huawei Enterprise Cloud Bitnami Mantis for Huawei Enterprise Cloud Description Mantis is a complete bug-tracking system that includes role-based access controls, changelog support, built-in reporting and more. A mobile client

More information

owlh_documentation Documentation

owlh_documentation Documentation owlh_documentation Documentation Release 0.4 - Cloud and Bro owlh team Sep 13, 2018 Contents 1 What is OwlH? 1 2 A few topics 3 i ii CHAPTER 1 What is OwlH? This is OwlH, open source solution. OwlH is

More information

Apache + PHP + MySQL. bdnog November 2017 Dhaka, Bangladesh

Apache + PHP + MySQL. bdnog November 2017 Dhaka, Bangladesh Apache + PHP + MySQL bdnog7 18-22 November 2017 Dhaka, Bangladesh Outline q Introduction to Apache httpd web server q Basic Compilation, Installation and Configuration q Apache File system q Apache Logging

More information

入侵偵測系統結合大數據分析 : Suricata 與 ELK Stack 之實際應用 中山大學 ( 高屏澎區網中心 ) 王聖全

入侵偵測系統結合大數據分析 : Suricata 與 ELK Stack 之實際應用 中山大學 ( 高屏澎區網中心 ) 王聖全 入侵偵測系統結合大數據分析 : Suricata 與 ELK Stack 之實際應用 1 中山大學 ( 高屏澎區網中心 ) 王聖全 Agenda Suricata 簡介及安裝 ELK stack 與 Suricata 整合之應用 Suricata 偵測規則運作及探討 Suricata 實例應用 2 3 Suricata 簡介及安裝 Suricata Introduction Network Intrusion

More information

Containers. Pablo F. Ordóñez. October 18, 2018

Containers. Pablo F. Ordóñez. October 18, 2018 Containers Pablo F. Ordóñez October 18, 2018 1 Welcome Song: Sola vaya Interpreter: La Sonora Ponceña 2 Goals Containers!= ( Moby-Dick ) Containers are part of the Linux Kernel Make your own container

More information

Rover Coin. Hot Cold Wallet Masternode VPS setup Guide

Rover Coin. Hot Cold Wallet Masternode VPS setup Guide Rover Coin Hot Cold Wallet Masternode VPS setup Guide 2018.03.07 1 Contents 1. Windows cold wallet guide... 3 1.1 Download the latest Rover windows wallet.... 3 1.2 How to make your own Rover address.....

More information

Continuous Integration with Jenkins

Continuous Integration with Jenkins Continuous Integration with Jenkins Last updated: 2 November 2018 Pepgo Limited, 71-75 Shelton Street, Covent Garden, London, WC2H 9JQ, United Kingdom Contents About this document... 4 Source code download...

More information

Build a powerful Web Server

Build a powerful Web Server 2018/03/31 20:15 1/10 Build a powerful Web Server Build a powerful Web Server Basic Linux knowledge is required. Operation confirmed with testing in our Ubuntu Minimal 16.04.3 LTS on updated 4.9.51-64

More information

Ingesting Logs with style. What has been cooking lately in Logstash world.

Ingesting Logs with style. What has been cooking lately in Logstash world. Ingesting Logs with style What has been cooking lately in Logstash world. # $whoami Pere Urbon-Bayes (Software Engineer since ever) Have always worked with databases, data and analytics. GraphDevRoom@FOSDEM

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Drupal

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Drupal About the Tutorial is a free and open source Content Management System (CMS) that allows organizing, managing and publishing your content. This reliable and secure CMS is built on PHP based environment

More information

Centralized log management

Centralized log management Centralized log management Miikka Ruokola Bachelor s thesis May 2017 School of Technology Degree Programme in Information Technology Author(s) Ruokola, Miikka Type of publication Bachelor s thesis Number

More information

Bitnami DokuWiki for Huawei Enterprise Cloud

Bitnami DokuWiki for Huawei Enterprise Cloud Bitnami DokuWiki for Huawei Enterprise Cloud Description DokuWiki is a standards-compliant, simple to use wiki optimized for creating documentation. It is targeted at developer teams, workgroups, and small

More information

stalun Documentation Release 0.2 Leonidas Poulopoulos, George Kargiotakis, GRNET NOC, GRNET

stalun Documentation Release 0.2 Leonidas Poulopoulos, George Kargiotakis, GRNET NOC, GRNET stalun Documentation Release 0.2 Leonidas Poulopoulos, George Kargiotakis, GRNET NOC, GRNET May 04, 2015 Contents 1 Description 1 2 Architecture 3 3 Inside info 5 4 Install 7 4.1 stalun installation instructions.....................................

More information

Ubuntu LTS Install Guide

Ubuntu LTS Install Guide Ubuntu 16.04.5 LTS Install Guide Sirenia September 17, 2018 Contents 1 Content 2 2 Login to server 2 3 Ensure access to repositories 3 4 Install Docker 3 5 Install Docker Compose 4 6 Pull software 4 7

More information

Below are the steps to install Orangescrum Self Hosted version of Cloud Edition in Ubuntu Server Last Updated: OCT 18, 2018

Below are the steps to install Orangescrum Self Hosted version of Cloud Edition in Ubuntu Server Last Updated: OCT 18, 2018 Below are the steps to install Orangescrum Self Hosted version of Cloud Edition in Ubuntu Server Last Updated: OCT 18, 2018 Step 1 Download the Orangescrum Self Hosted version of CloudEdition Extract the

More information

How to integrate the Elasticsearch Logstash Kibana (ELK) log analytics stack into IBM Bluemix

How to integrate the Elasticsearch Logstash Kibana (ELK) log analytics stack into IBM Bluemix How to integrate the Elasticsearch Logstash Kibana (ELK) log analytics stack into IBM Bluemix Nick Cawood IBM Cloud Client Adoption and Technical Enablement Client and Technical Engagement August 2016

More information

Orchid Fusion VMS Installation Guide

Orchid Fusion VMS Installation Guide Orchid Fusion VMS Installation Guide Version 2.4.0 Orchid Fusion VMS Installation Guide v2.4.0 1 C O N T E N T S About the Orchid Fusion VMS Installation Guide 2 Installation 3 Working in Windows 3 Working

More information

How To Start Mysql Use Linux Command Line Client In Ubuntu

How To Start Mysql Use Linux Command Line Client In Ubuntu How To Start Mysql Use Linux Command Line Client In Ubuntu Getting started with MySQL for web and server applications on Ubuntu 14.04 LTS (Trusty Tahr). get started with MySQL on an Ubuntu 14.04 LTS (Trusty

More information