WHO'S TALKING? Edvinas Aleksejonokas Member of OXID core team Joined two years ago

Size: px
Start display at page:

Download "WHO'S TALKING? Edvinas Aleksejonokas Member of OXID core team Joined two years ago"

Transcription

1 OXID VM & SDK

2 WHO'S TALKING? Edvinas Aleksejonokas Member of OXID core team Joined two years ago

3 WHO'S TALKING? HONESTLY... A person who was really feed up by the fact that: Everyone had their own dev-env Everyone had their own set of problems "It runs on my machine" was the attitude ATM Later I understood that I'm not the only one who had problems with these facts

4 REASONING

5 WHY? #1 Very developer-centric: From Developers By Developers For Developers

6 WHY? #2 Encapsulated/OS agnostic solution Easy kick-start for new developers Common work-flow for everyone No more "It works on my machine!" Have same problems to solve/collaborate

7 QUICK START

8 HOW TO GET? git clone --recursive --recursive details later

9 cd oxvm_eshop vagrant up HOW TO RUN?

10 HOW TO CHECK? open in browser or (for the terminal addicted ones): curl -I grep HTTP HTTP/ OK

11 VISUAL GUIDE

12

13

14

15 Optional

16

17

18

19

20

21

22

23

24 WHAT'S INCLUDED?

25 Ubuntu LTS subsystem Apache MySQL PHP 5.5.9

26 These are the safe default versions, feel free to experiment with newer stuff!

27 OXID ESHOP Latest CE edition directly from master branch Feel free to use your own PE/EE/Encoded/Patched version

28 OXID SDK OXID-eSales/testing_library OXID-eSales/module_skeleton_generator OXID-eSales/module_certification_tools More details later

29 Base php Ubuntu package phpbrew/phpbrew XDebug

30 Base MySQL Ubuntu package vrana/adminer

31 composer itself hirak/prestissimo

32 BACKEND mailhog/mailhog sendmail integrated with mailhog

33 Selenium 2.47 Firefox 31 Ubuntu package Base Ubuntu packages:

34 xfce4 xvfb x11vnc openjdk-7-jre-headless

35 Varnish 4.0.3

36 IonCube 5.1.2

37 WHAT'S NEXT?

38 THINGS TO DO! Try out any recent OXID eshop version Try out our SDK components Use VM for OXID eshop project development Create/Develop/Test OXID eshop module Create experiments and prototypes

39 HOW TO CONFIG?

40 Type some YAML into personal.yml file!

41 CHANGE ESHOP VERSION eshop: source: version: b-5.3-ce It takes master by default

42 php: version: 7 CHANGE PHP VERSION

43 vagrant_local: vm: provider: lxc CHANGE VM PROVIDER Virtualbox, parallels, vmware and lxc

44 CHANGE SHARED FOLDER vagrant_local: vm: app_shared_folder: source: /home/oxid/documents/projects/eshop target: /var/www/eshop eshop_target_path: /var/www/eshop

45 USE NFS WITH SHARED FOLDER vagrant_local: vm: app_shared_folder: sync_type: nfs Use sync_type: ~ to get default for provider

46 CHANGE VIRTUAL HOST vagrant_local: vm: aliases: -

47 varnish: install: true ENABLE VARNISH

48 selenium: install: true ENABLE SELENIUM

49 php: ioncube: install: true ENABLE IONCUBE

50 CHANGE OS PACKAGES MIRROR server: apt_mirror:

51 ADD CUSTOM PACKAGES server: personal_packages: - vim - htop - mc

52 PLETHORA OF CONFIG OPTIONS --- vagrant_local: vm: name: ce-410 provider: lxc base_box: ubuntu/trusty64 hostname: ce-410.dev aliases: - ip: memory: '512' cpus: 1 app_shared_folder: source: oxideshop target: "/var/www/oxideshop" sync_type: nfs owner: vagrant

53 STRUCTURE

54 REPOSITORIES OXID-eSales/oxvm_base LAMP, phpbrew, composer, xdebug, varnish, ioncube, adminer, mailhog... OXID-eSales/oxvm_eshop OXID eshop, SDK, selenium, varnish integration OXID-eSales/oxvm_assets Large files/binaries needed for VM

55 REPOSITORY SUB-MODULES \oxvm_eshop base_vm -> oxvm_base Main reason why --recursive flag is used during the checkout of oxvm_eshop repository

56 DEFAULT CONFIGURATION VALUES oxvm_base/ansible/vars/default.yml php: install: true... oxvm_eshop/ansible/vars/oxideshop.yml eshop: config: utf_mode: 0...

57 ROLES ENTRY POINT oxvm_base/ansible/roles/ apache php varnish ioncube... oxvm_eshop/ansible/roles/ ox_eshop ox_selenium

58 ROLE TASK STRUCTURE ansible/roles/varnish/tasks/ (Just an example): main.yml (Mandatory requirement by Ansible) install.yml uninstall.yml

59 MERGE ORDER OF CONFIGURATION VALUES [BASE VM] oxvm_base/ansible/playbook.yml: Inherited vars/default.yml Configurable ~/.personal_ansible_vm.yml../personal.yml

60 MERGE ORDER OF CONFIGURATION VALUES [OXID VM] oxvm_eshop/ansible/oxid.yml: Inherited../base_vm/ansible/vars/default.yml vars/oxideshop.yml Configurable ~/.personal_ansible_vm.yml../personal.yml

61 SDK

62 ATM THREE ITEMS Module skeleton generator Module certification tools Testing library

63 MODULE SKELETON GENERATOR A module which is installed by default It needs to be activated manually! Use it to create new modules

64 VISUAL GUIDE

65

66

67

68

69

70

71 MODULE CERTIFICATION TOOLS Generates code quality metrics Rough estimation of price for module certification Invocation: ox_cert <vendor_name>/<module_name>

72

73 TESTING LIBRARY Collection of tools for testing: reset-shop runmetrics runtests runtests-coverage runtests-selenium

74 UNIT/INTEGRATION TESTS

75

76 REMINDER Don't forget to run tests before suggesting a PR

77 RECENT CHANGES

78

79 NEW STUFF Ubuntu LTS support (LXC) Ansible 2.0 support Integration of IonCube prestissimo (composer) adminer config command for vagrant

80 CHANGES BindFS transferred to Provision part (ansible) Default backingstorage was specified (for LXC) display_errors are turned on by default

81 FIXES sync_type reference (for NFS) Force-less umount (for LXC)

82 TIPS & TRICKS

83 IN CASE OF PROBLEMS 95% of time blame the configuration Use new vagrant command: vagrant config This will allow to see the merged YAML configuration

84 SAVE TIME WITH BOX PACKAGES Use vagrant command vagrant package to produce box packages Use that box via personal.yml configuration --- vagrant_local: vm: base_box: cache.box

85 USE NFS Sync type Native NFS Shared folder Speed 2200 MBytes/s 320 MBytes/s 10 MBytes/s

86 AVOID VIRTUALBOX Use proprietary hypervisor Don't use emulated hardware

87 USE LXC Use it by default if you're host has a linux kernel Use it inside a hypervisor if you're planning to use several VM instances You can look at an example: rezonanc-oxid/lxc-box

88 PROVIDE GITHUB TOKEN --- php: composer: github_token: example_secret_token

89 USE LOCAL REPOSITORIES/MIRRORS --- php: phpbrew: cache: repo: composer: installer_url: mailhog: pkg_url: Reduce the provision time down-to 1 minute

90 USE BASE VM FOR OTHER PROJECTS Fork it Improve/Hack it Use it for your own projects: Django Rails Node.js...

91 FUTURE VISION

92

93 QUESTIONS/FEEDBACK

94 RELATED QUESTIONS?

95 ANY NON-RELATED QUESTIONS?

96 POSITIVE FEEDBACK? :)

97 NEGATIVE??? :/

98 THANK YOU!

Docker for Development: Getting Started

Docker for Development: Getting Started Docker for Development: Getting Started Lisa H. Ridley Savas Labs DrupalCamp Chattanooga November 5, 2016 Who am I? Lisa Ridley, Director of Client Success, Savas Labs Lead Developer and Project Manager

More information

Continuous integration & continuous delivery. COSC345 Software Engineering

Continuous integration & continuous delivery. COSC345 Software Engineering Continuous integration & continuous delivery COSC345 Software Engineering Outline Integrating different teams work, e.g., using git Defining continuous integration / continuous delivery We use continuous

More information

Building CircuitPython

Building CircuitPython Building CircuitPython Created by Dan Halbert Last updated on 2018-05-18 03:47:12 AM UTC Guide Contents Guide Contents Introduction Linux Setup Install a Real or Virtual Linux Machine Native Linux Linux

More information

projecto Documentation

projecto Documentation projecto Documentation Release 0.0.1 Projecto Team September 08, 2014 Contents 1 Part I: Projecto Overview 3 1.1 Features.................................................. 3 1.2 Project Layout..............................................

More information

Raspberry Pi Kernel-o-Matic

Raspberry Pi Kernel-o-Matic Raspberry Pi Kernel-o-Matic Created by Todd Treece Last updated on 2016-09-25 04:20:07 AM UTC Guide Contents Guide Contents Overview Installing Dependencies Starting the VM Build the Kernel Custom PiTFT

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

Software Development I

Software Development I 6.148 Software Development I Two things How to write code for web apps. How to collaborate and keep track of your work. A text editor A text editor A text editor Anything that you re used to using Even

More information

GETTING STARTED WITH. Michael Lessard Senior Solutions Architect June 2017

GETTING STARTED WITH. Michael Lessard Senior Solutions Architect June 2017 GETTING STARTED WITH Michael Lessard Senior Solutions Architect June 2017 Agenda What is Git? Installation of Git Git basis Github First steps with Git 2 WHAT IS GIT? What is Git? Started in 2005 Created

More information

Apache Manually Install Ubuntu On Windows 8 Themes

Apache Manually Install Ubuntu On Windows 8 Themes Apache Manually Install Ubuntu 12.04 On Windows 8 Themes Ability to install & change default website theme, without need to change the content. Note: On Ubuntu/Debian, during mysql installation, it will

More information

I hate money. Release 1.0

I hate money. Release 1.0 I hate money Release 1.0 Nov 01, 2017 Contents 1 Table of content 3 2 Indices and tables 15 i ii «I hate money» is a web application made to ease shared budget management. It keeps track of who bought

More information

Manual Updating Ubuntu Server Command Line

Manual Updating Ubuntu Server Command Line Manual Updating Ubuntu Server 12.04 Command Line How can I install just security updates from the command line? this is possible it needs to be done on several servers and ubuntu virtual machines (Manually

More information

Getting the files for the first time...2. Making Changes, Commiting them and Pull Requests:...5. Update your repository from the upstream master...

Getting the files for the first time...2. Making Changes, Commiting them and Pull Requests:...5. Update your repository from the upstream master... Table of Contents Getting the files for the first time...2 Making Changes, Commiting them and Pull Requests:...5 Update your repository from the upstream master...8 Making a new branch (for leads, do this

More information

Introduction to Git and Github Repositories

Introduction to Git and Github Repositories Introduction to Git and Github Repositories Benjamin Audren École Polytechnique Fédérale de Lausanne 29/10/2014 Benjamin Audren (EPFL) CLASS/MP MP runs 29/10/2014 1 / 16 Version Control survey Survey Who

More information

GIT VERSION CONTROL TUTORIAL. William Wu 2014 October 7

GIT VERSION CONTROL TUTORIAL. William Wu 2014 October 7 GIT VERSION CONTROL TUTORIAL William Wu w@qed.ai 2014 October 7 ABOUT ME Scientific Computing Specialist background: math, cs, ee interests: machine learning, DSP, imaging, data viz, cloud work: various

More information

TangeloHub Documentation

TangeloHub Documentation TangeloHub Documentation Release None Kitware, Inc. September 21, 2015 Contents 1 User s Guide 3 1.1 Managing Data.............................................. 3 1.2 Running an Analysis...........................................

More information

Docker at Lyft Speeding up development Matthew #dockercon

Docker at Lyft Speeding up development Matthew #dockercon Docker at Lyft Speeding up development Matthew Leventi @mleventi #dockercon Lyft Engineering Lyft Engineering Organization - Rapidly growing headcount - Fluid teams - Everyone does devops Technology -

More information

Travis Cardwell Technical Meeting

Travis Cardwell Technical Meeting .. Introduction to Docker Travis Cardwell Tokyo Linux Users Group 2014-01-18 Technical Meeting Presentation Motivation OS-level virtualization is becoming accessible Docker makes it very easy to experiment

More information

Vagrant and Ansible. Two so2ware tools to create and manage your custom VMs

Vagrant and Ansible. Two so2ware tools to create and manage your custom VMs Vagrant and Ansible Two so2ware tools to create and manage your custom VMs Vagrant and Ansible Highlights Overview on the so2ware tools o Why do you should use them o Install them Details about the configura=on

More information

vmpooler pdxdevops : April 2015

vmpooler pdxdevops : April 2015 vmpooler pdxdevops : April 2015 who am I? Scott Schneider Quality Engineer @ Puppet Labs sschneider@puppetlabs.com github.com/sschneid @lsrfsh what s a vmpooler? instantly-available VMs what s a vmpooler?

More information

Think Small to Scale Big

Think Small to Scale Big Think Small to Scale Big Intro to Containers for the Datacenter Admin Pete Zerger Principal Program Manager, MVP pete.zerger@cireson.com Cireson Lee Berg Blog, e-mail address, title Company Pete Zerger

More information

Quick Prototyping+CI with LXC and Puppet

Quick Prototyping+CI with LXC and Puppet Quick Prototyping+CI with LXC and Puppet Ben Kero 2014-05-04 Introduction Ben Kero Release Engineer Responsible for version control systems: CVS, SVN, BZR, Darcs, RCS, Git, Mercurial Before at Mozilla

More information

Installing and Using Docker Toolbox for Mac OSX and Windows

Installing and Using Docker Toolbox for Mac OSX and Windows Installing and Using Docker Toolbox for Mac OSX and Windows One of the most compelling reasons to run Docker on your local machine is the speed at which you can deploy and build lab environments. As a

More information

Effizientere WordPress-Plugin-Entwicklung mit Softwaretests. Martin Schütte

Effizientere WordPress-Plugin-Entwicklung mit Softwaretests. Martin Schütte Effizientere WordPress-Plugin-Entwicklung mit Softwaretests Martin Schütte About DECK36 Small team of 7 engineers Longstanding expertise in designing, implementing and operating complex web systems Developing

More information

Lab Objective. Lab Assignment. Downloads and Installation

Lab Objective. Lab Assignment. Downloads and Installation How I Start Working with Git: Git Lab 01 Adapted from: (1) https://github.com/quantstack/xeus-cling (2) https://code.visualstudio.com/docs/languages/cpp Lab Objective 1. Installing and using VS Code 2.

More information

docker & HEP: containerization of applications for development, distribution and preservation

docker & HEP: containerization of applications for development, distribution and preservation docker & HEP: containerization of applications for development, distribution and preservation Sébastien Binet LAL/IN2P3 2015-04-13 S. Binet (LAL) docker-hep 2015-04-13 1 / 16 Docker: what is it? http://www.docker.io/

More information

The Old World. Have you ever had to collaborate on a project by

The Old World. Have you ever had to collaborate on a project by What the Git? The Old World Have you ever had to collaborate on a project by Shuttling a USB drive back and forth Using Dropbox E-mailing your document around Have you ever accidentally deleted someone

More information

How to git with proper etiquette

How to git with proper etiquette How to git with proper etiquette Let's start fixing how we use git here in crew so our GitHub looks even more awesome and you all get experience working in a professional-like git environment. How to use

More information

Signals Documentation

Signals Documentation Signals Documentation Release 0.1 Yeti November 22, 2015 Contents 1 Quickstart 1 2 What is Signals? 3 3 Contents 5 3.1 Get Started................................................ 5 3.2 Try the Demo Server...........................................

More information

Git for Subversion users

Git for Subversion users Git for Subversion users Zend webinar, 23-02-2012 Stefan who? Stefan who? Freelancer: Ingewikkeld Stefan who? Freelancer: Ingewikkeld Symfony Community Manager Stefan who? Freelancer: Ingewikkeld Symfony

More information

Git Command Line Tool Is Not Installed

Git Command Line Tool Is Not Installed Git Command Line Tool Is Not Installed Make Sure It Is Accessible On Y Error: "git" command line tool is not installed: make sure it is accessible on y I have installed git tool. even in git bash its showing

More information

Gunnery Documentation

Gunnery Documentation Gunnery Documentation Release 0.1 Paweł Olejniczak August 18, 2014 Contents 1 Contents 3 1.1 Overview................................................. 3 1.2 Installation................................................

More information

Lab 01 How to Survive & Introduction to Git. Web Programming DataLab, CS, NTHU

Lab 01 How to Survive & Introduction to Git. Web Programming DataLab, CS, NTHU Lab 01 How to Survive & Introduction to Git Web Programming DataLab, CS, NTHU Notice These slides will focus on how to submit you code by using Git command line You can also use other Git GUI tool or built-in

More information

How To Install Java On Linux Ubuntu >>>CLICK HERE<<<

How To Install Java On Linux Ubuntu >>>CLICK HERE<<< How To Install Java On Linux Ubuntu 12.04 Server From Usb How to: Install the Java JDK on Ubuntu 14.04.1 LTS (Desktop via Terminal) terminal. To install Arduino on Linux (I'm running Ubuntu 14.04) visit

More information

Phpmyadmin Windows Xp

Phpmyadmin Windows Xp Manual Install Apache Win7 7 Php Mysql Phpmyadmin Windows Xp phpmyadmin allows you to control your MySQL server from a web browser. You will need to install a local web server on your Windows computer

More information

Lecture 2: Data in Linguistics, Git/GitHub, Jupyter Notebook. LING 1340/2340: Data Science for Linguists Na-Rae Han

Lecture 2: Data in Linguistics, Git/GitHub, Jupyter Notebook. LING 1340/2340: Data Science for Linguists Na-Rae Han Lecture 2: Data in Linguistics, Git/GitHub, Jupyter Notebook LING 1340/2340: Data Science for Linguists Na-Rae Han Objectives What do linguistic data look like? Tools: You should be taking NOTES! Git and

More information

Human-Computer Interaction Design

Human-Computer Interaction Design Human-Computer Interaction Design COGS120/CSE170 - Intro. HCI Instructor: Philip Guo, Lab TA: Sean Kross Lab 1 - Version control and HTML (2017-10-06) by Michael Bernstein, Scott Klemmer, Philip Guo, and

More information

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Oded Nahum Principal Systems Engineer PLUMgrid EMEA November 2014 Page 1 Page 2 Table of Contents Table

More information

LGTM Enterprise System Requirements. Release , August 2018

LGTM Enterprise System Requirements. Release , August 2018 Release 1.17.2, August 2018 Semmle Inc 180 Sansome St San Francisco, CA 94104 Copyright 2018, Semmle Ltd. All rights reserved. LGTM Enterprise release 1.17.2 Document published August 30, 2018 Contents

More information

Tips on how to set up a GitHub account:

Tips on how to set up a GitHub account: Tips on how to set up a GitHub account: 1. Go to the website https://github.com/, you will see the following page: Figure 1: The GitHub main webpage (before you create an account and sign in) Then choose

More information

DevOps Course Content

DevOps Course Content DevOps Course Content 1. Introduction: Understanding Development Development SDLC using WaterFall & Agile Understanding Operations DevOps to the rescue What is DevOps DevOps SDLC Continuous Delivery model

More information

Adding Transparency and Automation into the Galaxy Tool Installation Process

Adding Transparency and Automation into the Galaxy Tool Installation Process Adding Transparency and Automation into the Galaxy Tool Installation Process Enis Afgan Johns Hopkins University Galaxy Team Galaxy Admins Web Meetup August 20, 2015. Outline Installing tools in bulk (i.e.,

More information

Visualizing Git Workflows. A visual guide to 539 workflows

Visualizing Git Workflows. A visual guide to 539 workflows Visualizing Git Workflows A visual guide to 539 workflows Table of Contents Notation Collaboration Without Review or Branches Merge Conflicts Requesting Code Review Collaboration with Multiple Branches

More information

A Practical Introduction to Version Control Systems

A Practical Introduction to Version Control Systems A Practical Introduction to Version Control Systems A random CAKES(less) talk on a topic I hope others find useful! a.brampton@lancs.ac.uk 4th February 2009 Outline 1 What is Version Control Basic Principles

More information

Git. Ľubomír Prda. IT4Innovations.

Git. Ľubomír Prda. IT4Innovations. Git Ľubomír Prda IT4Innovations lubomir.prda@vsb.cz support@it4i.cz VCS Version Control System Versioning - creation and management of multiple releases of a product, all of which have the same general

More information

Network Automation: Ansible 101

Network Automation: Ansible 101 Network Automation: Ansible 101 APRICOT - Feb 28th, 2017 Bronwyn Lewis and Matt Peterson Our assumptions New to the world of DevOps No prior Ansible knowledge Want to stop hand-crafting your network configs

More information

Deploying a Private OpenStack Cloud at Scale. Matt Fischer & Clayton O Neill

Deploying a Private OpenStack Cloud at Scale. Matt Fischer & Clayton O Neill Deploying a Private OpenStack Cloud at Scale Matt Fischer & Clayton O Neill Introduction Clayton O Neill clayton.oneill@twcable.com IRC: clayton Matt Fischer matt.fischer@twcable.com IRC: mfisch What Is

More information

GUIDE TO MAKE A REAL CONTRIBUTION TO AN OPEN SOURCE PROJECT 1. 1

GUIDE TO MAKE A REAL CONTRIBUTION TO AN OPEN SOURCE PROJECT 1. 1 GUIDE TO MAKE A REAL CONTRIBUTION TO AN OPEN SOURCE PROJECT 1. 1 WHO AM I? @tushar_rishav GSoC'16 student contributing to coala - a static code analysis tool, under Python So ware Foundation. A senior

More information

git-flow Documentation

git-flow Documentation git-flow Documentation Release 1.0 Johan Cwiklinski Jul 14, 2017 Contents 1 Presentation 3 1.1 Conventions............................................... 4 1.2 Pre-requisites...............................................

More information

UP! TO DOCKER PAAS. Ming

UP! TO DOCKER PAAS. Ming UP! TO DOCKER PAAS Ming Jin(mjin@thoughtworks.com) March 15, 2015 1 WHO AM I Ming Jin Head of Cloud Solutions of ThoughtWorks China Architect, Agile Consulting Solutions and Consulting on DevOps & Cloud

More information

CESSDA Expert Seminar 13 & 14 September 2016 Prague, Czech Republic

CESSDA Expert Seminar 13 & 14 September 2016 Prague, Czech Republic CESSDA Expert Seminar 13 & 14 September 2016 Prague, Czech Republic - basics Matthäus Zloch GESIS Outline for this session Git introduction and some theory Git command basics (plus some little advanced)

More information

Tutorial 2 GitHub Tutorial

Tutorial 2 GitHub Tutorial TCSS 360: Software Development Institute of Technology and Quality Assurance Techniques University of Washington Tacoma Winter 2017 http://faculty.washington.edu/wlloyd/courses/tcss360 Tutorial 2 GitHub

More information

Drupal Command Line Instructions Windows 7 Network Drive >>>CLICK HERE<<<

Drupal Command Line Instructions Windows 7 Network Drive >>>CLICK HERE<<< Drupal Command Line Instructions Windows 7 Network Drive Applying patches, modifying files according to instructions in the patch file, This page only deals with some basic principles using the command

More information

Kollaborate Server. Installation Guide

Kollaborate Server. Installation Guide 1 Kollaborate Server Installation Guide Kollaborate Server is a local implementation of the Kollaborate cloud workflow system that allows you to run the service in-house on your own server and storage.

More information

GIT FOR SYSTEM ADMINS JUSTIN ELLIOTT PENN STATE UNIVERSITY

GIT FOR SYSTEM ADMINS JUSTIN ELLIOTT PENN STATE UNIVERSITY GIT FOR SYSTEM ADMINS JUSTIN ELLIOTT PENN STATE UNIVERSITY 1 WHAT IS VERSION CONTROL? Management of changes to documents like source code, scripts, text files Provides the ability to check documents in

More information

Splunk N Box. Splunk Multi-Site Clusters In 20 Minutes or Less! Mohamad Hassan Sales Engineer. 9/25/2017 Washington, DC

Splunk N Box. Splunk Multi-Site Clusters In 20 Minutes or Less! Mohamad Hassan Sales Engineer. 9/25/2017 Washington, DC Splunk N Box Splunk Multi-Site Clusters In 20 Minutes or Less! Mohamad Hassan Sales Engineer 9/25/2017 Washington, DC Forward-Looking Statements During the course of this presentation, we may make forward-looking

More information

Infoblox Kubernetes1.0.0 IPAM Plugin

Infoblox Kubernetes1.0.0 IPAM Plugin 2h DEPLOYMENT GUIDE Infoblox Kubernetes1.0.0 IPAM Plugin NIOS version 8.X August 2018 2018 Infoblox Inc. All rights reserved. Infoblox Kubernetes 1.0.0 IPAM Deployment Guide August 2018 Page 1 of 18 Overview...

More information

ovirt and Docker Integration

ovirt and Docker Integration ovirt and Docker Integration October 2014 Federico Simoncelli Principal Software Engineer Red Hat 1 Agenda Deploying an Application (Old-Fashion and Docker) Ecosystem: Kubernetes and Project Atomic Current

More information

Drupal Command Line Instructions Windows 7 List Files >>>CLICK HERE<<<

Drupal Command Line Instructions Windows 7 List Files >>>CLICK HERE<<< Drupal Command Line Instructions Windows 7 List Files Getting the Open Atrium files Before you can install Open Atrium, you need to get the files. There are (NOTE: These instructions are for *nix-based

More information

Drupal Command Line Instructions Windows 7 List All Files >>>CLICK HERE<<<

Drupal Command Line Instructions Windows 7 List All Files >>>CLICK HERE<<< Drupal Command Line Instructions Windows 7 List All Files The command line patch utility can run on Windows natively with GnuWin32 or select all text and copy it to clipboard (Ctrl+ C), Menu _ project

More information

Eugene, Niko, Matt, and Oliver

Eugene, Niko, Matt, and Oliver 213/513 Linux/Git Bootcamp Eugene, Niko, Matt, and Oliver outline 1. ssh but also Windows ssh client especially 2. bash commands + navigating Linux 3. VIM and VS Code 4. Git how to ssh 1. on OS X/Linux:

More information

UDS Enterprise Free & Evaluation Edition. Lab UDS Enterprise + VMware vsphere + RDP/XRDP

UDS Enterprise Free & Evaluation Edition. Lab UDS Enterprise + VMware vsphere + RDP/XRDP UDS Enterprise Free & Evaluation Edition Lab UDS Enterprise + VMware vsphere + RDP/XRDP 1 INDEX Introduction 03 Deployment of UDS Enterprise Free & Evaluation Edition 04 Upload UDS Appliances to VMware

More information

UDS Enterprise Free & Evaluation Edition. Lab UDS Enterprise + VMware vsphere + RDP/XRDP

UDS Enterprise Free & Evaluation Edition. Lab UDS Enterprise + VMware vsphere + RDP/XRDP UDS Enterprise Free & Evaluation Edition Lab UDS Enterprise + VMware vsphere + RDP/XRDP 1 INDEX Introduction 03 Deployment of UDS Enterprise Free & Evaluation Edition 04 Upload UDS Appliances to VMware

More information

1. Install a Virtual Machine Download Ubuntu Create a New Virtual Machine Seamless Operation between Windows an Linux...

1. Install a Virtual Machine Download Ubuntu Create a New Virtual Machine Seamless Operation between Windows an Linux... Introduction APPLICATION NOTE The purpose of this document is to explain how to create a Virtual Machine on a Windows PC such that a Linux environment can be created in order to build a Linux kernel and

More information

Technology Background Development environment, Skeleton and Libraries

Technology Background Development environment, Skeleton and Libraries Technology Background Development environment, Skeleton and Libraries Christian Kroiß (based on slides by Dr. Andreas Schroeder) 18.04.2013 Christian Kroiß Outline Lecture 1 I. Eclipse II. Redmine, Jenkins,

More information

Pro Vagrant SOURCE CODE ONLINE

Pro Vagrant SOURCE CODE ONLINE For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to access them. Contents at a Glance About the Author xvii

More information

Introduction to Git. Database Systems DataLab, CS, NTHU Spring, 2018

Introduction to Git. Database Systems DataLab, CS, NTHU Spring, 2018 Introduction to Git Database Systems DataLab, CS, NTHU Spring, 2018 1 Outline Version control system Git basics Git branch Remote repository 2 Outline Version control system Git basics Git branch Remote

More information

EASYLAMP UBUNTU V1.0 DOCUMENT OWNER: OUDHUIS, JONATHAN INGRAM MICRO CLOUD EUROPE

EASYLAMP UBUNTU V1.0 DOCUMENT OWNER: OUDHUIS, JONATHAN INGRAM MICRO CLOUD EUROPE EASYLAMP UBUNTU V1.0 DOCUMENT OWNER: OUDHUIS, JONATHAN INGRAM MICRO CLOUD EUROPE CONTENTS 1 Introduction... 2 2 Creating and configuring a virtual machine... 3 3 Installing Apache... 8 4 Installing MySQL...

More information

Verteego VDS Documentation

Verteego VDS Documentation Verteego VDS Documentation Release 1.0 Verteego May 31, 2017 Installation 1 Getting started 3 2 Ansible 5 2.1 1. Install Ansible............................................. 5 2.2 2. Clone installation

More information

Django MFA Documentation

Django MFA Documentation Django MFA Documentation Release 1.0 Micro Pyramid Sep 20, 2018 Contents 1 Getting started 3 1.1 Requirements............................................... 3 1.2 Installation................................................

More information

ISLET: Jon Schipp, AIDE jonschipp.com. An Attempt to Improve Linux-based Software Training

ISLET: Jon Schipp, AIDE jonschipp.com. An Attempt to Improve Linux-based Software Training ISLET: An Attempt to Improve Linux-based Software Training Jon Schipp, AIDE 2015 jonschipp@gmail.com, @Jonschipp, jonschipp.com About me: Security Engineer for the National Center for Supercomputing Applications

More information

Red Hat OpenShift Application Runtimes 1

Red Hat OpenShift Application Runtimes 1 Red Hat OpenShift Application Runtimes 1 Install and Configure the Fabric8 Launcher Tool For Use with Red Hat OpenShift Application Runtimes Last Updated: 2018-03-09 Red Hat OpenShift Application Runtimes

More information

VMRC Documentation. Release 1.0 VMRC

VMRC Documentation. Release 1.0 VMRC VMRC Documentation Release 1.0 VMRC November 13, 2015 Contents 1 About VMRC 3 2 VMRC Service 5 2.1 Introduction............................................... 5 2.2 Prerequisites...............................................

More information

Red Hat Development Suite 2.1

Red Hat Development Suite 2.1 Red Hat Development Suite 2.1 Installation Guide Installing Red Hat Development Suite Last Updated: 2017-12-06 Red Hat Development Suite 2.1 Installation Guide Installing Red Hat Development Suite Petra

More information

Submitting your Work using GIT

Submitting your Work using GIT Submitting your Work using GIT You will be using the git distributed source control system in order to manage and submit your assignments. Why? allows you to take snapshots of your project at safe points

More information

Be smart. Think open source.

Be smart. Think open source. Foreman Basics Be smart. Think open source. Foreman - Basics Lifecycle management of physical and virtual machines made easy! Agenda Introduction to Foreman Architecture Setup Provisioning Configuration

More information

" Qué me estás container?" Docker for dummies

 Qué me estás container? Docker for dummies " Qué me estás container?" Docker for dummies Sara Arjona @sara_arjona Pau Ferrer @crazyserver Developer at Moodle HQ Moodle Mobile developer at Moodle HQ #MootES18 Who uses Docker for development? Who

More information

L Modeling and Simulating Social Systems with MATLAB

L Modeling and Simulating Social Systems with MATLAB 851-0585-04L Modeling and Simulating Social Systems with MATLAB Lecture 3 GIT Connected Karsten Donnay and Stefano Balietti Chair of Sociology, in particular of Modeling and Simulation ETH Zürich 2012-10-08

More information

Table of Contents. Copyright CMSmart.net. All Rights Reserved. Back on top

Table of Contents. Copyright CMSmart.net. All Rights Reserved. Back on top Table of Contents The Ecommerce Marketplace Networks 1. About... 2 About Product... 2 System Requirements:... 3 2. Installation... 5 Step 1: Unzip Package... 5 Step 2: Upload and Install in Admin Panel...

More information

Building with Virtual Development EnvironmentsA. Oscar Merida July 2015

Building with Virtual Development EnvironmentsA. Oscar Merida July 2015 Building with Virtual Development EnvironmentsA Oscar Merida July 2015 What will we look at?a Benefits of using a Virtual MachineA Setting up a virtual environmenta Updating your workflowa Who uses A XAMP,

More information

Manual Java Install Mac Os X Mountain Lion On Pc Virtualbox

Manual Java Install Mac Os X Mountain Lion On Pc Virtualbox Manual Java Install Mac Os X Mountain Lion On Pc Virtualbox Als Host-Betriebssystem unterstützt VirtualBox Windows, Mac OS X (Intel), Sun Solaris Windows Installer: properly install the 32-bit version

More information

django simple pagination Documentation

django simple pagination Documentation django simple pagination Documentation Release 1.1.5 Micro Pyramid Nov 08, 2017 Contents 1 Getting started 3 1.1 Requirements............................................... 3 1.2 Installation................................................

More information

Xp Mode In Virtualbox

Xp Mode In Virtualbox How To Installing Rubygems On Windows Xp Mode In Virtualbox Which version of VirtualBox should I install (v4.3.26?) and how do I import.vhd file (13.5 GB) from Windows Virtual PC/Virtual Machines? nics:

More information

ZIP Code to Legislative District Matching via Cicero. Aaron Dennis

ZIP Code to Legislative District Matching via Cicero. Aaron Dennis ZIP Code to Legislative District Matching via Cicero Aaron Dennis adennis@azavea.com :!\ azavea ~ c1cero Aaron Dennis adennis@azavea.com What is Cicero? Cicero is a database of elected officials and legislative

More information

Basics of Git GitHub

Basics of Git GitHub Basics of Hub Why this Webinar? You registered for Microsoft codefundo++ Deadline to submit your idea is Oct 12th, 23:59 IST Getting you started with & Hub Agenda What is Version Control? What is the difference

More information

CS3210: Operating Systems

CS3210: Operating Systems CS3210: Operating Systems Lab 1 Tutorial 1 / 39 Lab session general structure Session A - overview presentation (30 min) Concepts, tutorial, and demo Session B - group activity (30 min) Each student will

More information

A Practical Introduction to git

A Practical Introduction to git 1 / 59 A Practical Introduction to git Emanuele Olivetti 1 Rike-Benjamin Schuppner 2 1 NeuroInformatics Laboratory (NILab) Bruno Kessler Foundation (FBK), Trento, Italy Center for Mind and Brain Sciences

More information

Let's Play... Try to name the databases described on the following slides...

Let's Play... Try to name the databases described on the following slides... Database Software Let's Play... Try to name the databases described on the following slides... "World's most popular" Free relational database system (RDBMS) that... the "M" in "LAMP" and "XAMP" stacks

More information

Build Cloud like Rackspace with OpenStack Ansible

Build Cloud like Rackspace with OpenStack Ansible Build Cloud like Rackspace with OpenStack Ansible https://etherpad.openstack.org/p/osa-workshop-01 Jirayut Nimsaeng DevOps & Cloud Architect 2nd Cloud OpenStack-Container Conference and Workshop 2016 Grand

More information

git commit --amend git rebase <base> git reflog git checkout -b Create and check out a new branch named <branch>. Drop the -b

git commit --amend git rebase <base> git reflog git checkout -b Create and check out a new branch named <branch>. Drop the -b Git Cheat Sheet Git Basics Rewriting Git History git init Create empty Git repo in specified directory. Run with no arguments to initialize the current directory as a git repository. git commit

More information

Git Workflows. Sylvain Bouveret, Grégory Mounié, Matthieu Moy

Git Workflows. Sylvain Bouveret, Grégory Mounié, Matthieu Moy s Sylvain Bouveret, Grégory Mounié, Matthieu Moy 2017 [first].[last]@imag.fr http://recherche.noiraudes.net/resources/git/git-workflow-slides.pdf 1 / 16 Goals of the presentation Global history: multiple

More information

CuteFlow-V4 Documentation

CuteFlow-V4 Documentation CuteFlow-V4 Documentation Release 4.0.0 Timo Haberkern Nov 15, 2017 Contents 1 Contributing 3 1.1 Contributing Code............................................ 3 1.2 Contributing Documentation.......................................

More information

Setup VirtualBox with Ubuntu bit on Windows7 64bit host. A native installation is of course fine, too. Let updater update.

Setup VirtualBox with Ubuntu bit on Windows7 64bit host. A native installation is of course fine, too. Let updater update. Apache Manually Installing Ubuntu 12.10 On Windows 7 64 Bit 32-bit installations: 256M or higher, 64-bit installations: 512M or higher If not, check your Apache configuration to ensure that htaccess is

More information

213/513/613 Linux/Git Bootcamp. Cyrus, Eugene, Minji, Niko

213/513/613 Linux/Git Bootcamp. Cyrus, Eugene, Minji, Niko 213/513/613 Linux/Git Bootcamp Cyrus, Eugene, Minji, Niko Outline 1. SSH, bash, and navigating Linux 2. Using VIM 3. Setting up VS Code 4. Git SSH 1. On macos/linux: $ ssh ANDREW-ID@shark.ics.cs.cmu.edu

More information

CORD How to build a POD and automate deployments. #OpenCORD

CORD How to build a POD and automate deployments. #OpenCORD CORD How to build a POD and automate deployments Full POD: definition The minimum amount of hardware that can be used to perform a full test of the current CORD features Mgmt L2 switch switch Tricks Avoid

More information

Build & Launch Tools (BLT) Automating best practices for enterprise sites

Build & Launch Tools (BLT) Automating best practices for enterprise sites Build & Launch Tools (BLT) Automating best practices for enterprise sites Who are you? Matthew Grasmick @grasmash on Drupal.org, twitter, etc. Acquia Professional Services, 4yrs Drupalist, 9yrs Maintainer

More information

Version Control Systems

Version Control Systems Version Control Systems Version Control In the 2 nd edition of Pro Git, version control is described as a system that records changes to a file or set of files over time so that you can recall specific

More information

Zenoss Resource Manager Upgrade Guide

Zenoss Resource Manager Upgrade Guide Zenoss Resource Manager Upgrade Guide Release 6.2.0 Zenoss, Inc. www.zenoss.com Zenoss Resource Manager Upgrade Guide Copyright 2018 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo

More information

openqrm Enterprise Administrator Guide Enterprise System Adminstration and IaaS Datacenter Automation with openqrm 5.2

openqrm Enterprise Administrator Guide Enterprise System Adminstration and IaaS Datacenter Automation with openqrm 5.2 openqrm Enterprise Administrator Guide Enterprise System Adminstration and IaaS Datacenter Automation with openqrm 5.2 Document Version: 01122014 - Released: 01. December 2014 1 Table of Contents Table

More information

Implementation of Continuous Integration for Linux Images

Implementation of Continuous Integration for Linux Images Implementation of Continuous Integration for Linux Images Jérôme Belleman, Linux Support Team HEPiX Fall 2017 Implementation of CI for Linux Images 2 Context HEPiX Fall 2017 Implementation of CI for Linux

More information

Introduction to Ruby on Rails

Introduction to Ruby on Rails Introduction to Ruby on Rails Keven Richly keven.richly@hpi.de Software Engineering II WS 2017/18 Prof. Plattner, Dr. Uflacker Enterprise Platform and Integration Concepts group Introduction to Ruby on

More information