1 av :26

Size: px
Start display at page:

Download "1 av :26"

Transcription

1 1 av :26 Created by Vivek Singh, last modified by Himabindu Thungathurty on Dec 02, 2016 This page has been recently updated to mention the new Bahmni Vagrant box setup, which uses the new Bahmni rpm based installation structure. Whether you use Windows, Linux or Mac, you can use this process to have Bahmni running on your machine for Testing or Development. The idea is to download the Bahmni Virtual (Vagrant) Box which is pre-installed with CentOS, and all softwares. To make the vagrant box run on your machine you will need Virtual Box, Vagrant and GIT installed (See steps below). Once you have this Vagrant box running, you can then make changes to file in the box, and see them reflect immediately. If you still wish to go ahead, and make code changes, and deploy them - then development setup will be needed, so that you can modify files in your base OS, and run them inside the Vagrant box after recompilation. Understanding Vagrant For development purposes we use Vagrant and Virtual Box. The vagrant box can have Centos To understand Vagrant better, you can read the following links: 1. Why Vagrant? 2. Difference between Vagrant boxes/vms. 3. Understanding the Vagrantfile 4. (Online Short Video Course) Understanding Vagrant Deployment Architecture Please read the document: High Level Deployment Architecture of Bahmni, to understand the major components that are present in the Virtual Box for Bahmni The latest version of Bahmni is v0.86. On this page Introduction Perform the following steps to get Bahmni VM setup on your computer Step 1: Install Git, Virtual Box and Vagrant on your computer Step 2: Create a folder bahmni where you would like all project related files to be present Step 3: Clone the following proje cts from Github inside the newly created folder bahmni Step 4: From within directory bahmnivagrant execute "vagrant up" command Step 5: You should have Bahmni up and running, and accessible on the below mentioned links Step 6: To halt the VM, you can use the "" command Working Inside the Bahmni Vagrant Box Starting / Stopping your Vagrant Box Updating your Vagrant Box to the Latest Version

2 2 av :26 Transferring your Vagrant box to another machine Related Links Step 1: Install Git, Virtual Box and Vagrant on your computer There is a known issue with Vagrant on Windows10. Please read this discussion to understand what you need to do: /t/unable-to-download-vagrant-box-cannot-find-box-error-windows- 10/6734/2 before installing vagrant. Git: VirtualBox: Vagrant: (Please install Vagrant version 1.7 or newer) Unable to Fetch Location Error Installing Bahmni on CentOS Box Setting up a Dev Environment Connecting to various Bahmni Databases Copying Vagrant boxes from one machine to another Step 2: Create a folder bahmni where you would like all project related files to be present cd /Projects mkdir bahmni Step 3: Clone the following projects from Github inside the newly created folder bahmni cd bahmni git clone vagrant.git Step 4: From within directory bahmni-vagrant execute "vagrant up" command This command will download a CentOS Vagrant Box from the internet, and install it on your machine ('vagrant box list' command shows a list of locally installed boxes). # This command will download the Vagrant box from Atlas first # The download box size is about GB. Please ensure you vagrant up

3 3 av :26 Vagrant Errors If the vagrant up command throws some error, please refer to the following If download of the box fails in the step above, and you wish to directly download the box using a downloader utility, then you can try the steps documented here: Direct Download of Vagrant Box. Step 5: You should have Bahmni up and running, and accessible on the below mentioned links If any service isn't running, then maybe you won't see the login screen. Please start that service, and then check. To start a service (say OpenERP) execute the following command: "sudo service openerp start" from inside the vagrant box. For details on all services in Bahmni, please refer to this document: Install Bahmni on CentOS (Services) Application Link Credentials Screens Bahmni EMR & Clinical UI superman/admin123 Lab System (OpenELIS) /openelis admin/adminadmin!

4 4 av :26 Application Link Credentials Screens ERP htt // / d i / d Billing and Inventory openerp in top right corner) Increase RAM for VM The current "Vagrantfile" is configured with only 3GB RAM. To make all services run, usually > 4GB is needed. If your host machine has more RAM, please consider increasing the RAM allocated to your Vagrant box. For doing that, please edit this line in your vagrant file: /Bahmni/bahmni-vagrant /blob/a77aeb95791d8fcd2d2235f8e8f3206e7b8d2cc4/vagrantfile#l11. Change the value of "--memory" 3092 to a higer value (in KB). Step 6: To halt the VM, you can use the "" command # Use 'vagrant up' next time, to restart the box. Working Inside the Bahmni Vagrant Box Once you have vagrant running successfully, you can ssh into it, and browse the following directories. Please refer to this document, to understand the various folders in a typical Bahmni installation on CentOS.

5 5 av :26 #ssh into the box t h cd /bahmni # For httpd server (where the EMR UI runs from): cd /var/www/ # Stops your vagrant box (and remembers all file system change # Brings your vagrant back on (if you did '' earli vagrant up # Destroy and free up space Any changes you made inside the vagrant destroy # Creates and starts a fresh box (won't download anything) fro vagrant up If you already have a Bahmni vagrant box on your machine, but would like to update to the latest published box, please perform the following steps. # See which versions of Bahmni vagrant box are installed on th vagrant box list # Warning!! This will destroy any changes you made in the vagr vagrant destroy # (Optional Step) Delete the box template of a specific versio vagrant box remove bahmni team/bahmni box version="0.81" # Will search and download the latest Bahmni vagrant box (abou vagrant box update

6 6 av :26 # You new box should come up now If you wish to transfer the same vagrant box from your machine to another machine, you can also do that. This has the following advantages: 1. Any data you setup in your vagrant box will also be available to the other box/machine. 2. If the other machine doesn't have fast internet access, then also you can perform this machine to machine box transfer, and save on bandwidth. 3. Its quicker than downloading the whole box! Steps to perform: Reference document: 1. Create Reference Box: Create a new vagrant box that has everything from your box packaged into it using the following commands: # Execute these commands from the same folder where your # Halt vagrant # Create a new.box. This will create a package.box file vagrant package 2. Use Box on Target Machine: On the new machine, perform the following steps: a. Create a new folder, say: "D:/my-bahmni-vagrant" b. Copy over the "package.box" file and "Vagrantfile" from your machine into the above folder. c. Edit the Vagrantfile and do the following: # Change this value as below config.vm.box = "my bahmni box" # Add this line to point the url to the package.box config.vm.box_url = "file:///d:/my bahmni vagrant/pa d. Save the Vagrant file and execute "vagrant up" command. Now the vagrant box on the new machine should be up. You can repeat step 2 on other machines, now that you have a package.box as reference for others.

7 7 av :26 v 0.86: /0.86/providers/virtualbox.box v 0.85: /0.85/providers/virtualbox.box v 0.83: /0.83/providers/virtualbox.box After download, rename the box to "package.box". Place the box in your "bahmnivagrant" folder, and edit the Vagrant file as below: Vagrantfile changes # Change this value as below config.vm.box = "my bahmni box" # Add this line to point the url to the package.box config.vm.box_url = "file:///d:/my bahmni vagrant/package.box" Now save the Vagrantfile. And then execute the "vagrant up" command. Gurpreet Luthra [Admin] If you have trouble performing the above steps, or have a question, please post your question on OpenMRS Talk (Bahmni Category): Charlie Brooking In case it helps anyone, I got these errors running vagrant-up: "Warning: Authentication failure... Timed out while waiting for the machine to boot." As a quick fix - assuming you are happy using Vagrant's insecure SSH key - you can add this line to bahmni-vagrant/vagrantfile: config.ssh.insert_key = false Filed as a GitHub issue here: Sravanthi Naraharisetti fixed this issue in v0.84. Thanks for raising the issue.

Setting up Craft with Vagrant

Setting up Craft with Vagrant Setting up Craft with Vagrant Jason McCallister Why Vagrant? slide 2 of 757 Lots of reasons Just because. Matching development environments for production as well as working with remote teams. Ability

More information

Infoblox and Ansible Integration

Infoblox and Ansible Integration DEPLOYMENT GUIDE Infoblox and Ansible Integration Ansible 2.5 April 2018 2018 Infoblox Inc. All rights reserved. Ansible Deployment Guide April 2018 Page 1 of 12 Contents Overview... 3 Introduction...

More information

J, K, L. Each command, 31. Fully qualified domain name (FQDN), 116

J, K, L. Each command, 31. Fully qualified domain name (FQDN), 116 Index A AngularJS framework command execution, 22 $ git clone command, 22 host OS, 24 OSs, 23 songs-app-angularjs/directory, 22 songs for kids, 76 77 Ubuntu 14.04 guest OS, 24 VM, 24 web browser and HTTP

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 3.1.3 Red Hat, Inc. Feb 27, 2018 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 5 4 Examine the Tower Dashboard 7 5 The Settings

More information

Zero Touch Provisioning of NIOS on Openstack using Ansible

Zero Touch Provisioning of NIOS on Openstack using Ansible DEPLOYMENT GUIDE Zero Touch Provisioning of NIOS on Openstack using Ansible NIOS version 8.3 Oct 2018 2018 Infoblox Inc. All rights reserved. Zero Touch Provisioning of NIOS on Openstack using Ansible

More information

Infrastructure at your Service. Setup Oracle Infrastructure with Vagrant & Ansible

Infrastructure at your Service. Setup Oracle Infrastructure with Vagrant & Ansible Infrastructure at your Service. About me Infrastructure at your Service. Natascha Karfich Consultant +41 78 688 05 34 natascha.karfich@dbi-services.com Page 2 Who we are dbi services Experts At Your Service

More information

vagrant up for Network Engineers Do it like they do on the Developer Channel!

vagrant up for Network Engineers Do it like they do on the Developer Channel! DEVNET-1364 vagrant up for Network Engineers Do it like they do on the Developer Channel! Hank Preston, NetDevOps Evangelist ccie 38336, R/S @hfpreston Cisco Spark How Questions? Use Cisco Spark to communicate

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 3.2.2 Red Hat, Inc. Mar 08, 2018 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 5 4 Examine the Tower Dashboard 7 5 The Settings

More information

Contents. Prerequisites 1. Linux 1. Installation 1. What is Ansible? 1. Basic Ansible Commands 1. Ansible Core Components 2. Plays and Playbooks 8

Contents. Prerequisites 1. Linux 1. Installation 1. What is Ansible? 1. Basic Ansible Commands 1. Ansible Core Components 2. Plays and Playbooks 8 Contents Prerequisites 1 Linux 1 Installation 1 What is Ansible? 1 Basic Ansible Commands 1 Ansible Core Components 2 Plays and Playbooks 2 Inventories 2 Modules 2 Variables 3 Ansible Facts 3 Ansible config

More information

The recommended way for deploying a OSS DC/OS cluster on GCE is using Terraform.

The recommended way for deploying a OSS DC/OS cluster on GCE is using Terraform. Running DC/OS on Google Compute Engine The recommended way for deploying a OSS DC/OS cluster on GCE is using Terraform. Terraform Disclaimer: Please note this is a community driven project and not officially

More information

Study Guide. Expertise in Ansible Automation

Study Guide. Expertise in Ansible Automation Study Guide Expertise in Ansible Automation Contents Prerequisites 1 Linux 1 Installation 1 What is Ansible? 1 Basic Ansible Commands 1 Ansible Core Components 2 Plays and Playbooks 2 Inventories 2 Modules

More information

Ansible Tower on the AWS Cloud

Ansible Tower on the AWS Cloud Ansible Tower on the AWS Cloud Quick Start Reference Deployment Tony Vattathil Solutions Architect, AWS Quick Start Reference Team April 2016 Last update: May 2017 (revisions) This guide is also available

More information

Ansible Tower Quick Install

Ansible Tower Quick Install Ansible Tower Quick Install Release Ansible Tower 3.0 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Preparing for the Tower Installation 2 1.1 Installation and Reference guide.....................................

More information

AUTOMATION ACROSS THE ENTERPRISE

AUTOMATION ACROSS THE ENTERPRISE AUTOMATION ACROSS THE ENTERPRISE WHAT WILL YOU LEARN? What is Ansible Tower How Ansible Tower Works Installing Ansible Tower Key Features WHAT IS ANSIBLE TOWER? Ansible Tower is a UI and RESTful API allowing

More information

(Almost) Instant monitoring

(Almost) Instant monitoring (Almost) Instant monitoring Ansible deploying Nagios+PMP Daniel Guzman Burgos (Percona) 2015-04-14 Agenda Monitoring and Nagios quick review Percona Nagios Plugins Ansible Insights Vagrant in 120 seconds

More information

Be smart. Think open source.

Be smart. Think open source. Ansible Basics Be smart. Think open source. Ansible Hands-on Learning by doing Hands-on :: Basics 01 Install Ansible and take the first steps Basics 01 - Installation Install Ansible on your machine: RHEL

More information

Contribute to CircuitPython with Git and GitHub

Contribute to CircuitPython with Git and GitHub Contribute to CircuitPython with Git and GitHub Created by Kattni Rembor Last updated on 2018-07-25 10:04:11 PM UTC Guide Contents Guide Contents Overview Requirements Expectations Grab Your Fork Clone

More information

Vagrant CookBook. A practical guide to Vagrant. Erika Heidi. This book is for sale at

Vagrant CookBook. A practical guide to Vagrant. Erika Heidi. This book is for sale at Vagrant CookBook A practical guide to Vagrant Erika Heidi This book is for sale at http://leanpub.com/vagrantcookbook This version was published on 2017-01-27 This is a Leanpub book. Leanpub empowers authors

More information

Provisioning MongoDB with Vagrant and Chef. Nathen Harvey Web Opera=ons, CustomInk

Provisioning MongoDB with Vagrant and Chef. Nathen Harvey Web Opera=ons, CustomInk Provisioning MongoDB with Vagrant and Chef Nathen Harvey Web Opera=ons, CustomInk nharvey@customink.com CustomInk My Work! Web Opera=ons at CustomInk! Automate! Support produc=on! Develop Rails! Monitor!

More information

Set Up Your Domain Here

Set Up Your Domain Here Roofing Business BLUEPRINT WordPress Plugin Installation & Video Walkthrough Version 1.0 Set Up Your Domain Here VIDEO 1 Introduction & Hosting Signup / Setup https://s3.amazonaws.com/rbbtraining/vid1/index.html

More information

Ansible: Server and Network Device Automation

Ansible: Server and Network Device Automation Ansible: Server and Network Device Automation Klaus Mueller & Ian Logan June 8, 2018 Who we are Klaus Mueller Senior Solutions Architect, ANM Route/Switch CCIE #5450 30+ years experience in IT 20 years

More information

We are ready to serve Latest IT Trends, Are you ready to learn?? New Batches Info

We are ready to serve Latest IT Trends, Are you ready to learn?? New Batches Info We are ready to serve Latest IT Trends, Are you ready to learn?? New Batches Info START DATE : TIMINGS : DURATION : TYPE OF BATCH : FEE : FACULTY NAME : LAB TIMINGS : PH NO: 9963799240, 040-48526948 1

More information

Outernet L-band for Linux Documentation

Outernet L-band for Linux Documentation Outernet L-band for Linux Documentation Release 1.0a7 Outernet Inc February 04, 2017 Contents 1 Licenses 3 2 Guide contents 5 2.1 Requirements...............................................

More information

Inkpebble Documentation

Inkpebble Documentation Inkpebble Documentation Release 0.1 Philip James April 15, 2014 Contents i ii Inkpebble Documentation, Release 0.1 Contents: Contents 1 Inkpebble Documentation, Release 0.1 2 Contents CHAPTER 1 Prime

More information

Rapid Deployment of Bare-Metal and In-Container HPC Clusters Using OpenHPC playbooks

Rapid Deployment of Bare-Metal and In-Container HPC Clusters Using OpenHPC playbooks Rapid Deployment of Bare-Metal and In-Container HPC Clusters Using OpenHPC playbooks Joshua Higgins, Taha Al-Jody and Violeta Holmes HPC Research Group University of Huddersfield, UK HPC Systems Professionals

More information

ansible-workshop Documentation

ansible-workshop Documentation ansible-workshop Documentation Release 0.1 Praveen Kumar, Aditya Patawari May 11, 2017 Contents 1 Introduction 3 1.1 Requirements............................................... 3 1.2 Goal...................................................

More information

Automate Patching for Oracle Database in your Private Cloud

Automate Patching for Oracle Database in your Private Cloud Automate Patching for Oracle Database in your Private Cloud Who we are Experts At Your Service > Over 50 specialists in IT infrastructure > Certified, experienced, passionate Based In Switzerland > 100%

More information

Ansible Tower Quick Install

Ansible Tower Quick Install Ansible Tower Quick Install Release Ansible Tower 3.2.0 Red Hat, Inc. Nov 15, 2017 CONTENTS 1 Preparing for the Tower Installation 2 1.1 Installation and Reference Guide....................................

More information

ROOMPLAYER GUIDE COMPLETE YOUR ROOMPLAYER SETUP WITH THE ROOMPLAYER DESKTOP APP

ROOMPLAYER GUIDE COMPLETE YOUR ROOMPLAYER SETUP WITH THE ROOMPLAYER DESKTOP APP ROOMPLAYER GUIDE COMPLETE YOUR ROOMPLAYER SETUP WITH THE ROOMPLAYER DESKTOP APP HELLO Once you ve connected your Roomplayer to your home network, downloading and installing the Roomplayer desktop app is

More information

DevOPS, Ansible and Automation for the DBA. Tech Experience 18, Amsersfoot 7 th / 8 th June 2018

DevOPS, Ansible and Automation for the DBA. Tech Experience 18, Amsersfoot 7 th / 8 th June 2018 DevOPS, Ansible and Automation for the DBA Tech Experience 18, Amsersfoot 7 th / 8 th June 2018 About Me Ron Ekins Oracle Solutions Architect, Office of the CTO @Pure Storage ron@purestorage.com Twitter:

More information

DocuSign for Sugar 7 v1.0. Overview. Quick Start Guide. Published December 5, 2013

DocuSign for Sugar 7 v1.0. Overview. Quick Start Guide. Published December 5, 2013 Quick Start Guide DocuSign for Sugar 7 v1.0 Published December 5, 2013 Overview This guide provides information on installing and signing documents with DocuSign for Sugar7. The Release Notes for DocuSign

More information

Managing Microservices using Terraform, Docker, and the Cloud

Managing Microservices using Terraform, Docker, and the Cloud Managing Microservices using Terraform, Docker, and the Cloud Given by Derek C. Ashmore JavaOne Oct 2, 2017 2017 Derek C. Ashmore, All Rights Reserved 1 Who am I? Professional Geek since 1987 Java/J2EE/Java

More information

An introduction to ANSIBLE. Anand Buddhdev RIPE NCC

An introduction to ANSIBLE. Anand Buddhdev RIPE NCC An introduction to ANSIBLE Anand Buddhdev RIPE NCC What is Ansible? A fictional machine capable of instantaneous communication :) Star Trek communicators An IT automation tool run one-time tasks configure

More information

How to import and sync your Scrivener projects from your computer via Dropbox?

How to import and sync your Scrivener projects from your computer via Dropbox? SCRIVO PRO HOW TO CREATE AND SYNC SCRIVENER PROJECTS Scrivo Pro can create, import and sync Scrivener projects on your ipad or iphone. This document explains how to create and sync your Scrivener projects

More information

AGENTLESS ARCHITECTURE

AGENTLESS ARCHITECTURE ansible.com +1 919.667.9958 WHITEPAPER THE BENEFITS OF AGENTLESS ARCHITECTURE A management tool should not impose additional demands on one s environment in fact, one should have to think about it as little

More information

Malaysian Open Source Conference (The) Multi Facets of the Open Source Tools. Muhammad Najmi Ahmad Zabidi

Malaysian Open Source Conference (The) Multi Facets of the Open Source Tools. Muhammad Najmi Ahmad Zabidi Malaysian Open Source Conference 2017 (The) Multi Facets of the Open Source Tools Muhammad Najmi Ahmad Zabidi About me Linux Administrator, End Point Corporation (remote staff from home) Holds a Master

More information

Getting Started with Ansible for Linux on z David Gross

Getting Started with Ansible for Linux on z David Gross Getting Started with Ansible for Linux on z David Gross Copyright IBM Corp. 2016. All rights reserved. January 22, 2016 Page 1 Abstract This paper addresses the use of Ansible to help with automation of

More information

Ansible Essentials 5 days Hands on

Ansible Essentials 5 days Hands on Ansible Essentials 5 days Hands on Ansible is growing in popularity for good reason, it is both easy to understand, far simpler than Python, and extremely powerful. While Python can be used to do just

More information

WHAT IS ANSIBLE AND HOW CAN IT HELP ME?

WHAT IS ANSIBLE AND HOW CAN IT HELP ME? www.tricorind.com 571-458-3824 WHAT IS ANSIBLE AND HOW CAN IT HELP ME? Ansible is an industry-leading automation tool that can centrally govern and monitor disparate systems and workloads and transform

More information

Deploying MySQL HA. with Ansible and Vagrant (101) Daniel Guzman Burgos (Percona) Robert Barabas (Percona)

Deploying MySQL HA. with Ansible and Vagrant (101) Daniel Guzman Burgos (Percona) Robert Barabas (Percona) Deploying MySQL HA with Ansible and Vagrant (101) Daniel Guzman Burgos (Percona) Robert Barabas (Percona) 2015-04-13 Agenda Introductions Environment Setup Virtual Machines Git Ansible Ansible Insights

More information

Zabbix Ansible Module. Patrik Uytterhoeven

Zabbix Ansible Module. Patrik Uytterhoeven Zabbix Ansible Module Patrik Uytterhoeven Overview My name is : Patrik Uytterhoeven I Work for: Open-Future We are an open source integrator We provide Zabbix training's We provide Zabbix installations

More information

By Pamela Baker for The Birch Cottage

By Pamela Baker for The Birch Cottage By Pamela Baker for The Birch Cottage Setup Your Bluehost Hosting Account Step One: To get started, go to Bluehost s home page and click get started now. Step Two: Next, you will select your domain name

More information

PAGE 1 THE PERFECT WORDPRESS DEVELOPMENT WORKFLOW

PAGE 1 THE PERFECT WORDPRESS DEVELOPMENT WORKFLOW PAGE 1 THE PERFECT WORDPRESS DEVELOPMENT WORKFLOW There are a lot of steps in the development process, so to help you jump exactly where you need to be, here are the different topics we ll cover in this

More information

G E O S E R V E R I N S TA L L

G E O S E R V E R I N S TA L L G E O S E R V E R I N S TA L L Installation and Configuration of GeoServer 01 January 2009 TABLE OF CONTENTS 1 Goals...3 2 Java Development Kit Install:...4 3 Set JAVA_HOME...6 4 GeoServer install...7

More information

Flash Blaster II v.2.00 for the Falcon digital console Falcon ENGLISH

Flash Blaster II v.2.00 for the Falcon digital console Falcon ENGLISH User's manual for: Flash Blaster II v.2.00 for the Falcon digital console Falcon ENGLISH http://www.lemaudio.com Overview Installation Communication Menùs&Functions Problems Upgrades Flash Blaster II v.2.00

More information

Celtx Studios Owner's Manual January 2011

Celtx Studios Owner's Manual January 2011 January 2011 Get the most out of Celtx Studios with the latest version of Celtx - available free at http://celtx.com Screen captures are made using Windows OS. Some image dialogs differ slightly on Mac

More information

Create and deploy a basic JHipster application to Heroku

Create and deploy a basic JHipster application to Heroku Create and deploy a basic JHipster application to Heroku A tutorial for beginners by David Garcerán. Student: David Garcerán García / LinkedIn: https://linkedin.com/in/davidgarceran Teacher: Alfredo Rueda

More information

Outernet L-band on Rasbian Documentation

Outernet L-band on Rasbian Documentation Outernet L-band on Rasbian Documentation Release 1.0a2 Outernet Inc May 22, 2017 Contents 1 Guide contents 3 i ii This guide shows how to deploy Outernet software on a Raspberry Pi

More information

Ansible Hands-on Introduction

Ansible Hands-on Introduction Ansible Hands-on Introduction Jon Jozwiak, Sr. Cloud Solutions Architect Minneapolis RHUG - April 13, 2017 What is Ansible? It's a simple automation language that can perfectly describe an IT application

More information

This guide provides information on installing, signing, and sending documents for signature with

This guide provides information on installing, signing, and sending documents for signature with Quick Start Guide DocuSign for Dynamics 365 CRM 5.2 Published: June 15, 2017 Overview This guide provides information on installing, signing, and sending documents for signature with DocuSign for Dynamics

More information

Ansible + Hadoop. Deploying Hortonworks Data Platform with Ansible. Michael Young Solutions Engineer February 23, 2017

Ansible + Hadoop. Deploying Hortonworks Data Platform with Ansible. Michael Young Solutions Engineer February 23, 2017 Ansible + Hadoop Deploying Hortonworks Data Platform with Ansible Michael Young Solutions Engineer February 23, 2017 About Me Michael Young Solutions Engineer @ Hortonworks 16+ years of experience (Almost

More information

GIVING POWER TO THE PEOPLE With General Mills

GIVING POWER TO THE PEOPLE With General Mills GIVING POWER TO THE PEOPLE With ANSIBLE @ General Mills Ops Devs Net Ashley Nelson DevOps Engineer - General Mills Mike Dahlgren Sr. Cloud Solution Architect - Red Hat Ashley NELSON DevOps @ GEN MILLS

More information

Cloud and Devops - Time to Change!!! PRESENTED BY: Vijay

Cloud and Devops - Time to Change!!! PRESENTED BY: Vijay Cloud and Devops - Time to Change!!! PRESENTED BY: Vijay ABOUT CLOUDNLOUD CloudnLoud training wing is founded in response to the desire to find a better alternative to the formal IT training methods and

More information

CET Designer for Sales. Brooke Snow Configura

CET Designer for Sales. Brooke Snow Configura CET Designer for Sales Brooke Snow Configura 1 Power in CET AGENDA 2 4 3 Live Design Sales Tools CRM Connect Tool 5 Sales Viewer POWER in the TOOL Not just for the pretty pictures Take advantage of the

More information

Computer Science 25: Introduction to C Programming

Computer Science 25: Introduction to C Programming California State University, Sacramento College of Engineering and Computer Science Computer Science 25: Introduction to C Programming Fall 2018 Project Dungeon Battle Overview Time to make a game a game

More information

DocuSign Setup Admin. DocuSign User Setup Process Overview. Setting up a new DocuSign user

DocuSign Setup Admin. DocuSign User Setup Process Overview. Setting up a new DocuSign user DocuSign Setup Admin DocuSign User Setup Process Overview 1) CORE-CT Security receives request to set up new supplier contract document creator 2) CORE-CT security team sets up Roles for the User 3) DocuSign

More information

FAQ and Solutions. 02 May TM and copyright Imagicle spa

FAQ and Solutions. 02 May TM and copyright Imagicle spa FAQ and Solutions 02 May 2018 TM and copyright 2010-2018 Imagicle spa Table of Contents FAQ and Solutions...1/11 SkyStone and network security settings...1/11 Upgrade procedure to support Skype 7.32...2/11

More information

Focusrite ios Control My interface isn't appearing in the app!

Focusrite ios Control My interface isn't appearing in the app! Focusrite ios Control My interface isn't appearing in the app! Applies to: Focusrite ios Control, Scarlett 6i6 + 18i8 + 18i20 (2nd Generation), Clarett Range, Red Range Focusrite Control for ios relies

More information

ANSIBLE TOWER OVERVIEW AND ROADMAP. Bill Nottingham Senior Principal Product Manager

ANSIBLE TOWER OVERVIEW AND ROADMAP. Bill Nottingham Senior Principal Product Manager ANSIBLE TOWER OVERVIEW AND ROADMAP Bill Nottingham Senior Principal Product Manager 2017-05-03 WHY AUTOMATE? Photo via Volvo WHY DO WE WANT AUTOMATION? People make mistakes People don't always have the

More information

PaperCut PaperCut Payment Gateway Module - Realex Realauth Redirect Quick Start Guide

PaperCut PaperCut Payment Gateway Module - Realex Realauth Redirect Quick Start Guide PaperCut PaperCut Payment Gateway Module - Realex Realauth Redirect Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting

More information

Once your church has set up the Church App for Seraphim, you can now download the app onto your mobile device from the the App Store or Google Play.

Once your church has set up the Church App for Seraphim, you can now download the app onto your mobile device from the the App Store or Google Play. Once your church has set up the Church App for Seraphim, you can now download the app onto your mobile device from the the App Store or Google Play. Once the app has completed downloading, open the app.

More information

PaperCut PaperCut Payment Gateway Module - Payment Gateway Module - NuVision Quick Start Guide

PaperCut PaperCut Payment Gateway Module - Payment Gateway Module - NuVision Quick Start Guide PaperCut PaperCut Payment Gateway Module - Payment Gateway Module - NuVision Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing,

More information

Enhancing Secrets Management in Ansible with CyberArk Application Identity Manager

Enhancing Secrets Management in Ansible with CyberArk Application Identity Manager + Enhancing Secrets Management in Ansible with CyberArk Application Identity Manager 1 TODAY S PRESENTERS: Chris Smith Naama Schwartzblat Kyle Benson Moderator Application Identity Manager Senior Product

More information

Ansible in Operation. Bruce Becker: Coordinator, SAGrid

Ansible in Operation. Bruce Becker: Coordinator, SAGrid Ansible in Operation Bruce Becker: Coordinator, SAGrid bbecker@csir.co.za http://www.sagrid.ac.za Learning Goals Manage inventory Ansible ad-hoc commands Write & run Playbooks Understanding of variables

More information

Term Definition Introduced in:

Term Definition Introduced in: 60 Minutes of Access Secrets Key Terms Term Definition Introduced in: Calculated Field A field that displays the results of a calculation. Introduced in Access 2010, this field allows you to make calculations

More information

The Foreman. Doina Cristina Duma, cristina.aiftimiei<at>cnaf.infn.it Diego Michelotto, diego.michelotto<at>cnaf.infn.it INFN-CNAF

The Foreman. Doina Cristina Duma, cristina.aiftimiei<at>cnaf.infn.it Diego Michelotto, diego.michelotto<at>cnaf.infn.it INFN-CNAF The Foreman Doina Cristina Duma, cristina.aiftimieicnaf.infn.it Diego Michelotto, diego.michelottocnaf.infn.it INFN-CNAF Corso Ansible/Foreman/Puppet, Bari, 5-9 Giugno 2018 Outline The Foreman

More information

Outlook Add-In Installation Guide. Version 2015

Outlook Add-In Installation Guide. Version 2015 Outlook Add-In Installation Guide Version 2015 Contents Types of Installer... 3 Outlook Add-in Architecture... 3 Key Facts... 3 Upgrading Previous Versions of the Outlook Add-in... 3 Manual installation

More information

Getting started with Ansible and Oracle

Getting started with Ansible and Oracle Getting started with Ansible and Oracle DOAG, Germany 22 nd Nov 2017 About Me Ron Ekins Oracle Solutions Architect for EMEA @ Pure Storage ron@purestorage.com Twitter: Blog: @RonEkins http://ronekins.wordpress.com

More information

Dominating Your Systems Universe with Ansible Daniel Hanks Sr. System Administrator Adobe Systems Incorporated

Dominating Your Systems Universe with Ansible Daniel Hanks Sr. System Administrator Adobe Systems Incorporated Dominating Your Systems Universe with Ansible Daniel Hanks Sr. System Administrator Adobe Systems Incorporated What is Ansible? Ansible is an IT automation tool. It can configure systems, deploy software,

More information

Game Design From Concepts To Implementation

Game Design From Concepts To Implementation Game Design From Concepts To Implementation Games Go Online The Dawn of Online Games Yesterday: we were buying boxes from the shelf Bad news: those times are gone! Today: we download a software for free

More information

This Lecture. G52GRP : Lecture 3. Sharing Code and Documents (2) Sharing Code and Documents (1)

This Lecture. G52GRP : Lecture 3. Sharing Code and Documents (2) Sharing Code and Documents (1) This Lecture G52GRP 2012 2013: Lecture 3 Project Site and Version Control with Subversion Indefero project site Why use version control systems? Subversion Using Subversion Henrik Nilsson University of

More information

Ansible Tower Installation and Reference Guide

Ansible Tower Installation and Reference Guide Ansible Tower Installation and Reference Guide Release Ansible Tower 3.0.3 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Tower Licensing, Updates, and Support 2 1.1 Support..................................................

More information

Ansible. Go directly to project site 1 / 36

Ansible. Go directly to project site 1 / 36 Ansible Go directly to project site 1 / 36 What is it and why should I be using it? 2 / 36 What is it? Ansible is a radically simple IT automation platform that makes your applications and systems easier

More information

FMJD Draughts Arbiter Pro page 1

FMJD Draughts Arbiter Pro page 1 FMJD Draughts Arbiter Pro page 1 Part A starting the use of the program 1. How do you get a licence and download and install the program: a. Get a licence Click on the Draughts Arbiter logo on the FMJD

More information

GRAPHOGAME User Guide:

GRAPHOGAME User Guide: GRAPHOGAME User Guide: 1. User registration 2. Downloading the game using Internet Explorer browser or similar 3. Adding players and access rights to the games 3.1. adding a new player using the Graphogame

More information

How to avoid boring work - Automation for DBAs

How to avoid boring work - Automation for DBAs How to avoid boring work - Automation for DBAs Marcin Przepiorowski Delphix Ireland Keywords: Automation, Ansible, Oracle Enterprise Manager Introduction If you are maintaining a fleet of servers or many

More information

MULTI CLOUD AS CODE WITH ANSIBLE & TOWER

MULTI CLOUD AS CODE WITH ANSIBLE & TOWER MULTI CLOUD AS CODE WITH ANSIBLE & TOWER Enterprise Grade Automation David CLAUVEL - Cloud Solutions Architect Twitter: @automaticdavid December 2018 AUTOMATE REPEAT IT 2 AGENDA - TOOLING THE DEVOPS PRACTICE

More information

An Escape Room set in the world of Assassin s Creed Origins. Content

An Escape Room set in the world of Assassin s Creed Origins. Content An Escape Room set in the world of Assassin s Creed Origins Content Version Number 2496 How to install your Escape the Lost Pyramid Experience Goto Page 3 How to install the Sphinx Operator and Loader

More information

STEP BY STEP GUIDE (RASPBERRY PI)

STEP BY STEP GUIDE (RASPBERRY PI) STEP BY STEP GUIDE (RASPBERRY PI) Raspberry Pi The Raspberry Pi is a credit-card-sized single-board computer developed in the UK by the Raspberry Pi Foundation with the intention of promoting the teaching

More information

OPEN SOURCING ANSIBLE

OPEN SOURCING ANSIBLE OpenMunich December 1, 2017 OPEN SOURCING ANSIBLE Roland Wolters Senior Product Manager, Red Hat GmbH AUTOMATE REPEAT IT 2 WHAT IS ANSIBLE AUTOMATION? --$] ansible-playbook -i inventory playbook.yml -

More information

Business Getting Started Guide - Windows

Business Getting Started Guide - Windows Business Getting Started Guide - Windows Revision date: 6/30/2017 Notice While every effort has been taken to ensure the accuracy and usefulness of this guide, we cannot be held responsible for the occasional

More information

Infrastructure Configuration and Management with Ansible. Kaklamanos Georgios

Infrastructure Configuration and Management with Ansible. Kaklamanos Georgios Infrastructure Configuration and Management with Ansible Kaklamanos Georgios Central Configuration and Management Tools What are they? Why do we need them? The three most popular: Chef, Puppet, CFEngine

More information

@ The ULTIMATE Manual

@ The ULTIMATE Manual @ The ULTIMATE Console @ Manual CONSOLE The Ultimate Console runs the jzintv emulator on a Raspberry Pi. You will see some computer code with loading, but I ve tried to keep this to a minimum. It takes

More information

Getting Started with Ansible - Introduction

Getting Started with Ansible - Introduction Getting Started with Ansible - Introduction Automation for everyone Götz Rieger Senior Solution Architect Roland Wolters Senior Solution Architect WHAT IS ANSIBLE? WHAT IS ANSIBLE? It s a simple automation

More information

Infrastructure as Code CS398 - ACC

Infrastructure as Code CS398 - ACC Infrastructure as Code CS398 - ACC Prof. Robert J. Brunner Ben Congdon Tyler Kim MP7 How s it going? Final Autograder run: - Tonight ~8pm - Tomorrow ~3pm Due tomorrow at 11:59 pm. Latest Commit to the

More information

Ansible. -- Make it so

Ansible. -- Make it so Ansible -- Make it so Overview What is Ansible and why is it different? Using Ansible Interactively What is Ansible Tower? SIMPLE POWERFUL AGENTLESS Human readable automation No special coding skills needed

More information

KB Stories. Roles identified. KB Admin - To Do. KB Admin. Moderator/Publisher/Approver. Author/Contributer. Basic User - User Internal

KB Stories. Roles identified. KB Admin - To Do. KB Admin. Moderator/Publisher/Approver. Author/Contributer. Basic User - User Internal KB Stories UC Berkeley Campus Ticketing Public Roles identified KB Admin Moderator/Publisher/Approver. Author/Contributer Basic User - User Internal Basic User - External KB Admin - To Do As a KB Admin,

More information

DakStats Web-Sync. Operation Manual. DD Rev 4 12 December 2012

DakStats Web-Sync. Operation Manual. DD Rev 4 12 December 2012 DakStats Web-Sync Operation Manual DD1670479 Rev 4 12 December 2012 201 Daktronics Drive PO Box 5128 Brookings, SD 57006-5128 Tel: 1-800-DAKTRONICS (1-800-325-8766) Fax: 605-697-4746 www.daktronics.com

More information

Voice & Message Banking

Voice & Message Banking Quick Facts about Voice Banking Voice banking is the process of saving recordings of your voice for future use. There are two main approaches: voice banking (creating a synthesized voice) and message banking

More information

Sims 3 Error Code 16 Save As Doesn't Work

Sims 3 Error Code 16 Save As Doesn't Work Sims 3 Error Code 16 Save As Doesn't Work Feb 21, 2015. I just reinstalled the sims 3 generations for my sims wedding but when ever I try to save it won't let me due to Error code 12! before I installed

More information

USER GUIDE LAST UPDATED DECEMBER 15, REX GAME STUDIOS, LLC Page 2

USER GUIDE LAST UPDATED DECEMBER 15, REX GAME STUDIOS, LLC Page 2 USER GUIDE LAST UPDATED DECEMBER 15, 2016 REX GAME STUDIOS, LLC Page 2 Table of Contents Introduction to REX Worldwide Airports HD...3 CHAPTER 1 - Program Start...4 CHAPTER 2 - Setup Assistant...5 CHAPTER

More information

PaperCut PaperCut Payment Gateway Module - Nelnet Business Solutions Commerce Manager Quick Start Guide

PaperCut PaperCut Payment Gateway Module - Nelnet Business Solutions Commerce Manager Quick Start Guide PaperCut PaperCut Payment Gateway Module - Nelnet Business Solutions Commerce Manager Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide

More information

PaperCut TouchNet upay Quick Start Guide

PaperCut TouchNet upay Quick Start Guide PaperCut TouchNet upay Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up and testing the Payment Gateway Module

More information

Ansible for DevOps. Server and configuration management for humans. Jeff Geerling ISBN Jeff Geerling

Ansible for DevOps. Server and configuration management for humans. Jeff Geerling ISBN Jeff Geerling Ansible for DevOps Server and configuration management for humans Jeff Geerling ISBN 978-0-9863934-0-2 2014-2016 Jeff Geerling Tweet This Book! Please help Jeff Geerling by spreading the word about this

More information

PaperCut PaperCut Payment Gateway Module Authorize.Net Quick Start Guide

PaperCut PaperCut Payment Gateway Module Authorize.Net Quick Start Guide PaperCut PaperCut Payment Gateway Module Authorize.Net Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and

More information

ID Photo Processor. Batch photo processing. User Guide

ID Photo Processor. Batch photo processing. User Guide ID Photo Processor Batch photo processing User Guide 2015 Akond company 197342, Russia, St.-Petersburg, Serdobolskaya, 65a Phone/fax: +7(812)384-6430 Cell: +7(921)757-8319 e-mail: info@akond.net http://www.akond.net

More information

Ansible Tower Installation and Reference Guide

Ansible Tower Installation and Reference Guide Ansible Tower Installation and Reference Guide Release Ansible Tower 2.4.5 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Tower Licensing, Updates, and Support 2 1.1 Support..................................................

More information

User Manual for use of new IML executable based on VS2010

User Manual for use of new IML executable based on VS2010 User Manual for use of new IML executable based on VS2010 IML facilitates Trading members to trade on BSE platform based on their customised Trading application. IML acts as a gateway between the Third

More information

Vagrant Virtual Development Environment Cookbook

Vagrant Virtual Development Environment Cookbook Vagrant Virtual Development Environment Cookbook Table of Contents Vagrant Virtual Development Environment Cookbook Credits About the Author About the Reviewers www.packtpub.com Support files, ebooks,

More information

Shonku Documentation. Release 0.1. Kushal Das

Shonku Documentation. Release 0.1. Kushal Das Shonku Documentation Release 0.1 Kushal Das Jul 14, 2017 Contents 1 History of the project 3 2 Installation 5 2.1 Install golang............................................... 5 2.2 Install the dependencies.........................................

More information