DC/OS on Google Compute Engine

Size: px
Start display at page:

Download "DC/OS on Google Compute Engine"

Transcription

1 DC/OS on Google Compute Engine You can configure a DC/OS cluster on Google Compute Engine (GCE) by using these scripts. Configure bootstrap node Install the DC/OS GCE scripts Configure parameters Important: Upgrades are not supported with this installation method. Prerequisites Google Cloud Console account Bootstrap node configuration A bootstrap node is required to run the scripts and to bootstrap the DC/OS cluster. Create a GCE project and instance 1. Create a project by using the Google Cloud Console. In these examples we created a project called trek-treck r. 2. Create the bootstrap node using the Google Cloud Console. In these examples we used a n1-standard-1 instance running CentOS 7 with a 10 GB persistent disk in zone europe-west1-c. The bootstrap node must have Allow full access to all Cloud APIs in the Identity and API access section. Also enable Block projectwide SSH keys in the SSH Keys section. Create the instance. 3. After creating the bootstrap instance, start the instance and run the following from the shell. These commands install prerequisite software on your bootstrap node.

2 sudo yum update google-cloud-sdk && sudo yum update && sudo yum install epel-release && sudo yum install python-pip && sudo pip install -U pip && sudo pip install 'apache-libcloud==1.2.1' && sudo pip install 'docker-py==1.9.0' && sudo yum install git ansible Setup RSA public/private keypairs You must create the RSA public/private keypairs to allow passwordless logins via SSH to the nodes of the DC/OS cluster. This is required by Ansible to create the cluster nodes and install DC/OS on the nodes. Important: Replace ajazam with your username in these examples. 1. Run this command to generate the keys: ssh-keygen -t rsa -f ~/.ssh/id_rsa -C ajazam Do not enter a password when prompted. 2. Make a backup copy of id_rsa.pub. 3. Open RSA pub key: vi ~/.ssh/id_rsa.pub You should see something like this: ssh-rsa abcdefghijklmaasnsknsdjfsdfjs;dfj;sdflkjsd ajazam 4. Prefix your username, followed by a colon, to the above line. Also ajazam:ssh-rsa abcdefghijklmaasnsknsdjfsdfjs;dfj;sdflkjsd ajazam

3 5. Save contents of id_rsa.pub. 6. Add the rsa public key to your project chmod 400 ~/.ssh/id_rsa gcloud compute project-info add-metadata --metadata-from-file sshkeys=~/.ssh/id_rsa.pub Configure Docker 1. You must disable SELinux for Docker to work. Make the following change to /etc/selinux/config : SELINUX=disabled 2. Reboot host. 3. To install Docker add the Yum repo. sudo tee /etc/yum.repos.d/docker.repo <<-'EOF' [dockerrepo] name=docker Repository baseurl= enabled=1 gpgcheck=1 gpgkey= EOF 4. Install the Docker package. sudo yum install docker-engine Add following changes to /usr/lib/systemd/system/docker.service. ExecStart=/usr/bin/docker daemon --storage-driver=overlayoverlay

4 6. Reload systemd. sudo systemctl daemon-reload 7. Start Docker. sudo systemctl start docker.service 8. Verify that Docker works. sudo docker run hello-world Install the DC/OS GCE scripts 1. Download the dcos-gce scripts git clone 2. Change directory. cd dcos-gce 3. Review and customize the dcos_gce/group_vars/all. You should review project, subnet, login_name, b ootstrap_public_ip, and zone. To install DC/OS 1.8 stable, ensure that: dcos_installer_download_path = " dcos_installer_filename }}?_ga= Insert following into ~/.ansible.cfg to stop host key checking.

5 4. Insert following into ~/.ansible.cfg to stop host key checking. [defaults] host_key_checking = False [paramiko_connection] record_host_keys = False [ssh_connection] ssh_args = -o ControlMaster=auto auto -o ControlPersist=60s -o UserKnownHostsFile=/dev/null Ensure The IP address for master0 in dcos_gce/hosts is the next consecutive IP from bootstrap_public_ip, e.g. if bootstrap_public_ip = then ensure master0 = To create and configure the master nodes run this command: ansible-playbook -i hosts install.yml 2. To create and configure the private nodes run this command: ansible-playbook -i hosts add_agents.yml --extra-vars "start_id=0001 end_id=0002 agent_type=private" Where start_id=0001 and end_id=0002 specify the range of IDs that are appended to the hostname agent to create unique agent names. If start_id is not specified, a default value of 0001 is used. If the en d_id is not specified, a default value of 0001 is used. The values for agent_type are either private or public. If an agent_type is not specified, a default value of agent_type=private is used. 3. To create public nodes run this command: ansible-playbook -i hosts add_agents.yml --extra-vars "start_id=0003 end_id=0004 agent_type=public" Configurable parameters File dcos_gce/hosts is an Ansible inventory file. Text wrapped by brackets [] represents a group name and individual entries after the group name represent hosts in that group. The [masters] group contains node names and IP addresses for the master nodes. In the supplied file, the host name is master0 and the IP address is assigned to master0. YOU MUST CHANGE the IP

6 address for master0 for your network. You can create multiple entries, for example master1, master2 etc. Each node must have a unique IP address. The [agents] group has one entry. It specifies the names of all the agents one can have in the DC/OS cluster. The value specifies that agent0000 to agent9999. A total of 10,000 agents are allowed. This really is an artificial limit because it can easily be changed. The [bootstrap] group has the name of the bootstrap node. File./group_vars/all contains miscellaneous parameters that will change the behaviour of the installation scripts. The parameters are split into two groups. Group 1 parameters must be changed to reflect your environment. Group 2 parameters can optionally be changed to change the behaviour of the scripts. Group 1 You must customize these for your environment. project Specify your project ID. Default: trek-trackr. subnet Specify your network. Default: default. login_name Specify the login name used for accessing each GCE instance. Default: ajazam. bootstrap_public_ip Specify the bootstrap nodes public IP. Default: zone You can optionally specify your preferred zone. Default: europe-west1-c. Group 2 You can optionally change these parameters to modify the behaviour of the installation scripts.

7 master_boot_disk_size: Specify the size of the master node boot disk. Default 10 GB. master_machine_type Specify the GCE instance type used for the master nodes. Default: n1-standard-2. master_boot_disk_type Specify the master boot disk type. Default: pd-standard. agent_boot_disk_size Specify the size of the agent boot disk. Default 10 GB. agent_machine_type Specify the GCE instance type used for the agent nodes. Default: n1-standard-2. agent_boot_disk_type Specify the agent boot disk type. Default: pd-standard. agent_instance_type Specify whether agents are preemptible. If the value is "MIGRATE" then they are not preemptible. If the value is "TERMINATE" --preemptible then the instance is preemptible. Default: "MIGRATE". agent_type Specify whether an agent is public or private. Default: private. start_id Specify the number appended to the text agent is used to define the hostname of the first agent. e.g. agent Intermediate agents between start_id and end_id will be created if required. Default: end_id

8 Specify the number appended to the text agent is used to define the hostname of the last agent. e.g. agent0001. Intermediate agents between start_id and end_id will be created if required. Default: gcloudbin Specify the location of the gcloudbin binary. Default: /usr/local/bin/gcloud. image Specify the disk image used on the master and agent. Default: /centos-cloud/centos-7-v bootstrap_public_port Specify the port on the bootstrap node which is used to fetch the DC/OS installer from each of the master and agent nodes. Default: cluster_name Specify the name of the DC/OS cluster. Default: cluster_name. scopes Do not change this parameter. It is required by the Google Cloud SDK. dcos_installer_filename Specify the filename for the DC/OS installer. Default dcos_generate_config.sh. dcos_installer_download_path Specify the location of where the dcos installer is available from dcos.io. Default: s/stable/1.8.9/{{ dcos_installer_filename }}. The value of {{ dcos_installer_file }} is described above. home_directory Specify the home directory for your logins. Default: /home/{{ login_name }}. The value of {{ login_name }} is described above. downloads_from_bootstrap

9 Specify the concurrent downloads of the DC/OS installer to the cluster of master and agent nodes. You might need to experiment with this to get the best performance. The performance will be a function of the machine type used for the bootstrap node. Default: 2. dcos_bootstrap_container Specify the name of the DC/OS bootstrap container running on the bootstrap node. Default: dcosinstaller.

HOW TO SECURELY CONFIGURE A LINUX HOST TO RUN CONTAINERS

HOW TO SECURELY CONFIGURE A LINUX HOST TO RUN CONTAINERS HOW TO SECURELY CONFIGURE A LINUX HOST TO RUN CONTAINERS How To Securely Configure a Linux Host to Run Containers To run containers securely, one must go through a multitude of steps to ensure that a)

More information

GIT. A free and open source distributed version control system. User Guide. January, Department of Computer Science and Engineering

GIT. A free and open source distributed version control system. User Guide. January, Department of Computer Science and Engineering GIT A free and open source distributed version control system User Guide January, 2018 Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Table of Contents What is

More information

USING NGC WITH GOOGLE CLOUD PLATFORM

USING NGC WITH GOOGLE CLOUD PLATFORM USING NGC WITH GOOGLE CLOUD PLATFORM DU-08962-001 _v02 April 2018 Setup Guide TABLE OF CONTENTS Chapter 1. Introduction to... 1 Chapter 2. Deploying an NVIDIA GPU Cloud Image from the GCP Console...3 2.1.

More information

System Requirements ENTERPRISE

System Requirements ENTERPRISE System Requirements ENTERPRISE Hardware Prerequisites You must have a single bootstrap node, Mesos master nodes, and Mesos agent nodes. Bootstrap node 1 node with 2 cores, 16 GB RAM, 60 GB HDD. This is

More information

Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018

Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 This guide will help you download and install IBM Db2 software,

More information

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

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Gerrit Gerrit About the Tutorial Gerrit is a web-based code review tool, which is integrated with Git and built on top of Git version control system (helps developers to work together and maintain the history

More information

Tunir Documentation. Release Kushal Das

Tunir Documentation. Release Kushal Das Tunir Documentation Release 0.17 Kushal Das Jul 24, 2017 Contents 1 Why another testing tool? 3 2 Installation 5 2.1 Clone the repository........................................... 5 2.2 Install the dependencies.........................................

More information

Build your own Lightweight Webserver - Hands-on I - Information Network I. Marius Georgescu. Internet Engineering Laboratory. 17 Apr

Build your own Lightweight Webserver - Hands-on I - Information Network I. Marius Georgescu. Internet Engineering Laboratory. 17 Apr Build your own Lightweight Webserver - Hands-on I - Information Network I Marius Georgescu Internet Engineering Laboratory 17 Apr. 2015 iplab Prerequisites Prerequisites Download and Install VirtualBox

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

KubeNow Documentation

KubeNow Documentation KubeNow Documentation Release 0.3.0 mcapuccini Dec 13, 2017 Getting Started 1 Prerequisites 3 1.1 Install Docker.............................................. 3 1.2 Get KubeNow..............................................

More information

OpenStack Havana All-in-One lab on VMware Workstation

OpenStack Havana All-in-One lab on VMware Workstation OpenStack Havana All-in-One lab on VMware Workstation With all of the popularity of OpenStack in general, and specifically with my other posts on deploying the Rackspace Private Cloud lab on VMware Workstation,

More information

Important: Upgrades are not supported with this installation method.

Important: Upgrades are not supported with this installation method. CLI DC/OS Installation Guide The automated CLI installer provides a guided installation of DC/OS from the command line. With this method you can choose from the complete set of DC/OS configuration options.

More information

Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda

Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda Module 1: Google Cloud Platform Projects Identify project resources and quotas Explain the purpose of Google Cloud Resource

More information

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the all nodes.

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the all nodes. Network setup As the root user execute the command "ifconfig" on each host. Take a note of ipaddress's of all machines I have a home LAN so my addresses are class C which might be in the format 192.168.192.x.

More information

The bootstrap node must be network accessible from the cluster nodes. The bootstrap node must have the HTTP(S) ports open from the cluster nodes.

The bootstrap node must be network accessible from the cluster nodes. The bootstrap node must have the HTTP(S) ports open from the cluster nodes. Advanced DC/OS Installation Guide With this installation method, you package the DC/OS distribution yourself and connect to every node manually to run the DC/OS installation commands. This installation

More information

Avi Deployment Guide for Google Cloud Platform (GCP)

Avi Deployment Guide for Google Cloud Platform (GCP) Page 1 of 14 Avi Deployment Guide for Google Cloud Platform (GCP) view online This article describes the process of provisioning and configuring Avi Vantage with Google Cloud Platform (GCP). I. Introduction

More information

Setting up a Chaincoin Masternode

Setting up a Chaincoin Masternode Setting up a Chaincoin Masternode Introduction So you want to set up your own Chaincoin Masternode? You ve come to the right place! These instructions are correct as of April, 2017, and relate to version

More information

FUJITSU Software ServerView Cloud Monitoring Manager V1.1. CMM Operator's Guide

FUJITSU Software ServerView Cloud Monitoring Manager V1.1. CMM Operator's Guide FUJITSU Software ServerView Cloud Monitoring Manager V1.1 CMM Operator's Guide J2UL-2076-02ENZ0(00) July 2016 Contents Contents About this Manual... 5 1 Introduction... 8 1.1 Basic Usage Scenario... 9

More information

Red Hat Virtualization 4.2

Red Hat Virtualization 4.2 Red Hat Virtualization 4.2 Metrics Store Installation Guide Installing Metrics Store for Red Hat Virtualization Last Updated: 2018-08-20 Red Hat Virtualization 4.2 Metrics Store Installation Guide Installing

More information

This document provides instructions for upgrading a DC/OS cluster.

This document provides instructions for upgrading a DC/OS cluster. Upgrading ENTERPRISE This document provides instructions for upgrading a DC/OS cluster. If this upgrade is performed on a supported OS with all prerequisites fulfilled, this upgrade should preserve the

More information

Zenoss Resource Manager Upgrade Guide

Zenoss Resource Manager Upgrade Guide Zenoss Resource Manager Upgrade Guide Release 5.0.10 Zenoss, Inc. www.zenoss.com Zenoss Resource Manager Upgrade Guide Copyright 2016 Zenoss, Inc. All rights reserved. Zenoss and the Zenoss logo are trademarks

More information

Avi Deployment Guide for Google Cloud Platform (GCP)

Avi Deployment Guide for Google Cloud Platform (GCP) Page 1 of 14 Avi Deployment Guide for Google Cloud Platform (GCP) view online This article describes the process of provisioning and configuring Avi Vantage with Google Cloud Platform (GCP). I. INTRODUCTION

More information

RDO container registry Documentation

RDO container registry Documentation RDO container registry Documentation Release 0.0.1.dev28 Red Hat Jun 08, 2018 Contents 1 Table of Contents 3 1.1 About the registry............................................ 3 1.2 Installing the registry...........................................

More information

Pexip Infinity and Google Cloud Platform Deployment Guide

Pexip Infinity and Google Cloud Platform Deployment Guide Pexip Infinity and Google Cloud Platform Deployment Guide Contents Introduction 1 Deployment guidelines 2 Configuring your Google VPC network 4 Obtaining and preparing disk images for GCE Virtual Machines

More information

Operating and managing an Atomic container-based infrastructure

Operating and managing an Atomic container-based infrastructure Operating and managing an Atomic container-based infrastructure Scott Collier Lars Kellogg-Stedman Sr. Principal System Engineer Senior Software Engineer Brett Thurber Principal Software Engineer 6/25/15

More information

a. puppet should point to master (i.e., append puppet to line with master in it. Use a text editor like Vim.

a. puppet should point to master (i.e., append puppet to line with master in it. Use a text editor like Vim. Head Node Make sure that you have completed the section on Precursor Steps and Storage. Key parts of that are necessary for you to continue on this. If you have issues, please let an instructor know to

More information

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the other 3(4) nodes.

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the other 3(4) nodes. Network setup As the root user execute the command "ifconfig" on each host. Take a note of ipaddress's of all machines I have a home LAN so my addresses are class C which might be in the format 192.168.192.x.

More information

Quipucords Documentation

Quipucords Documentation Quipucords Documentation Release 1.0.0 Red Hat Sep 07, 2018 Contents: 1 About Quipucords 1 1.1 Quipucords User Guide......................................... 1 1.2 qpc....................................................

More information

Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018

Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 This guide will help you download and install IBM Db2 software, Data

More information

FUJITSU Software ServerView Cloud Monitoring Manager V1.1. OpenStack Operator's Guide

FUJITSU Software ServerView Cloud Monitoring Manager V1.1. OpenStack Operator's Guide FUJITSU Software ServerView Cloud Monitoring Manager V1.1 OpenStack Operator's Guide J2UL-2075-02ENZ0(00) July 2016 Contents Contents About this Manual... 5 1 Introduction... 8 1.1 Basic Usage Scenario...

More information

Advanced DC/OS Installation Guide

Advanced DC/OS Installation Guide Advanced DC/OS Installation Guide With this installation method, you package the DC/OS distribution yourself and connect to every node manually to run the DC/OS installation commands. This installation

More information

Inception Cloud User s Guide

Inception Cloud User s Guide Inception Cloud User s Guide 1 Overview Creating an inception cloud consists of preparing your workstation, preparing the VM environment by adding a temporary boot-up machine, and then executing the orchestrator

More information

SSH Deploy Key Documentation

SSH Deploy Key Documentation SSH Deploy Key Documentation Release 0.1.1 Travis Bear February 03, 2014 Contents 1 Overview 1 2 Source Code 3 3 Contents 5 3.1 Alternatives................................................ 5 3.2 Compatibility...............................................

More information

LENS Server Maintenance Guide JZ 2017/07/28

LENS Server Maintenance Guide JZ 2017/07/28 LENS Server Maintenance Guide JZ 2017/07/28 Duty Maintain LENS server with minimum downtime Patch critical vulnerabilities Assist LAB member for using the LENS services Evaluate for custom requirements

More information

Precursor Steps & Storage Node

Precursor Steps & Storage Node Precursor Steps & Storage Node In a basic HPC cluster, the head node is the orchestration unit and possibly the login portal for your end users. It s one of the most essential pieces to get working appropriately.

More information

Preparing Your Google Cloud VM for W4705

Preparing Your Google Cloud VM for W4705 Preparing Your Google Cloud VM for W4705 August 27, 2017 1. Get a cloud.cs.columbia.edu account 1. Sign up for a cloud Columbia CS account using this link. Note that is is an entirely new account and is

More information

OpenNebula 4.6 Quickstart CentOS 6 and ESX 5.x

OpenNebula 4.6 Quickstart CentOS 6 and ESX 5.x OpenNebula 4.6 Quickstart CentOS 6 and ESX 5.x Release 4.6 OpenNebula Project June 12, 2014 CONTENTS 1 Package Layout 3 2 Step 1. Infrastructure Set-up 5 3 Step 2. OpenNebula Front-end Set-up 7 4 Step

More information

CSCI 350 Virtual Machine Setup Guide

CSCI 350 Virtual Machine Setup Guide CSCI 350 Virtual Machine Setup Guide This guide will take you through the steps needed to set up the virtual machine to do the PintOS project. Both Macintosh and Windows will run just fine. We have yet

More information

Pulp Python Support Documentation

Pulp Python Support Documentation Pulp Python Support Documentation Release 1.0.1 Pulp Project October 20, 2015 Contents 1 Release Notes 3 1.1 1.0 Release Notes............................................ 3 2 Administrator Documentation

More information

PVS Deployment in the Cloud. Last Updated: June 17, 2016

PVS Deployment in the Cloud. Last Updated: June 17, 2016 PVS Deployment in the Cloud Last Updated: June 17, 2016 Contents Amazon Web Services Introduction 3 Software Requirements 4 Set up a NAT Gateway 5 Install PVS on the NAT Gateway 11 Example Deployment 12

More information

Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit

Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit Getting Started with Cockpit Red Hat Atomic Host Documentation Team Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit

More information

/etc/systemd/system/dcos.target.wants /opt/mesosphere

/etc/systemd/system/dcos.target.wants /opt/mesosphere /opt/mesosphere /etc/systemd/system/dcos.target.wants /opt/mesosphere /etc/systemd/system/dcos. /etc/systemd/system/dco dcos.target.wants /var/lib/zookeeper /var/lib/docker /var/lib/dcos /var/lib/mesos

More information

Automated Installation Guide for CentOS (PHP 7.x)

Automated Installation Guide for CentOS (PHP 7.x) Automated Installation Guide for CentOS (PHP 7.x) *Note: This script will not work on shared hosting, only works on CentOS dedicated server only. Prerequisites: Hardware: RAM: minimum 2 GB Processor: Core2duo

More information

Getting the Source Code

Getting the Source Code Getting the Source Code The CORD source code is available from our Gerrit system at gerrit.opencord.org. Setting up a Gerrit account and ssh access will also enable you to submit your own changes to CORD

More information

ULTEO OPEN VIRTUAL DESKTOP CENTOS 6.0 SUPPORT

ULTEO OPEN VIRTUAL DESKTOP CENTOS 6.0 SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 CENTOS 6.0 SUPPORT Contents 1 Prerequisites: CentOS 6.0 3 1.1 System Requirements.............................. 3 1.2 SELinux....................................... 3

More information

SmartCash SmartNode Setup Guide v1.2. Windows 10. Date: 13/01/2018. By (Jazz) yoyomonkey

SmartCash SmartNode Setup Guide v1.2. Windows 10. Date: 13/01/2018. By (Jazz) yoyomonkey SmartCash SmartNode Setup Guide v1.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at the casual

More information

SmartCash SmartNode Setup Guide V1.2 Windows 10 13/01/2018 By (Jazz) yoyomonkey Page 1

SmartCash SmartNode Setup Guide V1.2 Windows 10 13/01/2018 By (Jazz) yoyomonkey Page 1 SmartCash SmartNode Setup Guide v1.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at the casual

More information

SmartCash SmartNode SCRIPT Setup Guide v2.2. Windows 10. Date: 20/02/2018. By (Jazz) yoyomonkey

SmartCash SmartNode SCRIPT Setup Guide v2.2. Windows 10. Date: 20/02/2018. By (Jazz) yoyomonkey SmartCash SmartNode SCRIPT Setup Guide v2.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at

More information

Incident Response Platform Integrations BigFix Function V1.1.0 Release Date: October 2018

Incident Response Platform Integrations BigFix Function V1.1.0 Release Date: October 2018 Incident Response Platform Integrations BigFix Function V1.1.0 Release Date: October 2018 Resilient Functions simplify development of integrations by wrapping each activity into an individual workflow

More information

EnhancedEndpointTracker Documentation

EnhancedEndpointTracker Documentation EnhancedEndpointTracker Documentation Release 1.0 agccie Jul 23, 2018 Contents: 1 Introduction 1 2 Install 3 2.1 ACI Application............................................. 3 2.2 Standalone Application.........................................

More information

Deploying a Production Gateway with Airavata

Deploying a Production Gateway with Airavata Deploying a Production Gateway with Airavata Table of Contents Pre-requisites... 1 Create a Gateway Request... 1 Gateway Deploy Steps... 2 Install Ansible & Python...2 Deploy the Gateway...3 Gateway Configuration...

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

Red Hat Ceph Storage 3

Red Hat Ceph Storage 3 Red Hat Ceph Storage 3 Container Guide Deploying and Managing Red Hat Ceph Storage in Containers Last Updated: 2018-01-30 Red Hat Ceph Storage 3 Container Guide Deploying and Managing Red Hat Ceph Storage

More information

Server guides for the GIRAF project

Server guides for the GIRAF project Server guides for the GIRAF project A joint guide produced by SW611 & SW616 Aalborg University Contents 1 Accessing the GIRAF servers (SW611)........................... 3 2 Using Docker (SW611)..........................................

More information

If you had a freshly generated image from an LCI instructor, make sure to set the hostnames again:

If you had a freshly generated image from an LCI instructor, make sure to set the hostnames again: Storage Node Setup A storage node (or system as your scale) is a very important unit for an HPC cluster. The computation is often about the data it produces and keeping that data safe is important. Safe

More information

Installation and setup guide of 1.1 demonstrator

Installation and setup guide of 1.1 demonstrator Installation and setup guide of 1.1 demonstrator version 2.0, last modified: 2015-09-23 This document explains how to set up the INAETICS demonstrator. For this, we use a Vagrant-based setup that boots

More information

bootmachine Documentation

bootmachine Documentation bootmachine Documentation Release 0.6.0 Thomas Schreiber April 20, 2015 Contents 1 bootmachine 3 1.1 Configuration Management Tools.................................... 3 1.2 Providers.................................................

More information

Red Hat Ceph Storage 3

Red Hat Ceph Storage 3 Red Hat Ceph Storage 3 Installation Guide for Red Hat Enterprise Linux Installing Red Hat Ceph Storage on Red Hat Enterprise Linux Last Updated: 2018-04-25 Red Hat Ceph Storage 3 Installation Guide for

More information

Git Fusion Guide February 2016 Update

Git Fusion Guide February 2016 Update Git Fusion Guide 2016.1 February 2016 Update Git Fusion Guide 2016.1 February 2016 Update Copyright 1999-2016 Perforce Software. All rights reserved. Perforce software and documentation is available from

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

Git Fusion Guide July 2015 Update

Git Fusion Guide July 2015 Update Git Fusion Guide 2015.2 July 2015 Update Git Fusion Guide 2015.2 July 2015 Update Copyright 1999-2015 Perforce Software. All rights reserved. Perforce software and documentation is available from http://www.perforce.com/.

More information

LIP for Windows Server Infrastructure Automation Via Ansible Devops Tool

LIP for Windows Server Infrastructure Automation Via Ansible Devops Tool LIP for Windows Server Infrastructure Automation Via Ansible Devops Tool This document provides the details about ansible automation for Windows server infrastructure. Author : Sangeetha Sangeetha@cloudnloud.com

More information

FEPS. SSH Access with Two-Factor Authentication. RSA Key-pairs

FEPS. SSH Access with Two-Factor Authentication. RSA Key-pairs FEPS SSH Access with Two-Factor Authentication RSA Key-pairs access.eps.surrey.ac.uk Contents: Introduction - 3 RSA Key-pairs - 3 Where can I use my RSA Key-Pair? - 3 Step 1 Prepare to generate your RSA

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

VMware AirWatch Content Gateway for Linux. VMware Workspace ONE UEM 1811 Unified Access Gateway

VMware AirWatch Content Gateway for Linux. VMware Workspace ONE UEM 1811 Unified Access Gateway VMware AirWatch Content Gateway for Linux VMware Workspace ONE UEM 1811 Unified Access Gateway You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Building Tizen Development Environment

Building Tizen Development Environment Building Tizen Development Environment Minsoo Ryu Real-Time Computing and Communications Lab. Hanyang University msryu@hanyang.ac.kr Tizen 2.3 Development Environment Target hardware device Tizen Reference

More information

Test Lab Introduction to the Test Lab Linux Cluster Environment

Test Lab Introduction to the Test Lab Linux Cluster Environment Test Lab 1.0 - Introduction to the Test Lab Linux Cluster Environment Test lab is a set of three disposable cluster environments that can be used for systems research. All three environments are accessible

More information

Cloud Computing. Luigi Santangelo Department of Computer Engineering University of Pavia

Cloud Computing. Luigi Santangelo Department of Computer Engineering University of Pavia Cloud Computing Luigi Santangelo Department of Computer Engineering University of Pavia luigi.santangelo@unipv.it What we will learn Part 1: What is cloud computing Five main cloud computing elements Cloud

More information

Quick Start Guide to Compute Canada Cloud Service

Quick Start Guide to Compute Canada Cloud Service Quick Start Guide to Compute Canada Cloud Service Launching your first instance (VM) Login to the East or West cloud Dashboard SSH key pair Importing an existing key pair Creating a new key pair Launching

More information

dbx MNT AWS Setup Guide

dbx MNT AWS Setup Guide dbx MNT AWS Setup Guide Rev 4.0 June 2018 XtremeData, Inc. 999 Plaza Dr., Ste. 570 Schaumburg, IL 60173 www.xtremedata.com 1. Overview... 3 1.1 Architectural Diagram... 4 1.2 Architectural Elements...

More information

USING NGC WITH AZURE. DU _v01 September Setup Guide

USING NGC WITH AZURE. DU _v01 September Setup Guide USING NGC WITH AZURE DU-08833-001 _v01 September 2018 Setup Guide TABLE OF CONTENTS Chapter Introduction to... 1 Chapter 2. Before You Start... 2 2. Prerequisites... 2 2.2. Setting Up SSH Keys...3 2.3.

More information

OpenNebula 4.12 Quickstart CentOS 7 and KVM

OpenNebula 4.12 Quickstart CentOS 7 and KVM OpenNebula 4.12 Quickstart CentOS 7 and KVM Release 4.12.1 OpenNebula Project April 08, 2015 CONTENTS 1 Package Layout 3 2 Step 1. Installation in the Frontend 5 2.1 1.1. Install the repo............................................

More information

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B::

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B:: Module Title Duration : 55187B: Linux System Administration : 4 days Overview This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

Using DC/OS for Continuous Delivery

Using DC/OS for Continuous Delivery Using DC/OS for Continuous Delivery DevPulseCon 2017 Elizabeth K. Joseph, @pleia2 Mesosphere 1 Elizabeth K. Joseph, Developer Advocate, Mesosphere 15+ years working in open source communities 10+ years

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

VMware AirWatch Content Gateway Guide for Linux For Linux

VMware AirWatch Content Gateway Guide for Linux For Linux VMware AirWatch Content Gateway Guide for Linux For Linux Workspace ONE UEM v9.7 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

Bitte decken Sie die schraffierte Fläche mit einem Bild ab. Please cover the shaded area with a picture. (24,4 x 7,6 cm)

Bitte decken Sie die schraffierte Fläche mit einem Bild ab. Please cover the shaded area with a picture. (24,4 x 7,6 cm) Bitte decken Sie die schraffierte Fläche mit einem Bild ab. Please cover the shaded area with a picture. (24,4 x 7,6 cm) Continuous Integration / Continuous Testing Seminary IIC Requirements Java SE Runtime

More information

Citrix CloudPlatform (powered by Apache CloudStack) Version Patch D Release Notes. Revised July 02, :15 pm Pacific

Citrix CloudPlatform (powered by Apache CloudStack) Version Patch D Release Notes. Revised July 02, :15 pm Pacific Citrix CloudPlatform (powered by Apache CloudStack) Version 3.0.5 Patch D Release Notes Revised July 02, 2014 10:15 pm Pacific Citrix CloudPlatform (powered by Apache CloudStack) Version 3.0.5 Patch D

More information

"Charting the Course... MOC B: Linux System Administration. Course Summary

Charting the Course... MOC B: Linux System Administration. Course Summary Description Course Summary This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional Linux system administrator. The course covers

More information

Cisco Prime Service Catalog Virtual Appliance Quick Start Guide 2

Cisco Prime Service Catalog Virtual Appliance Quick Start Guide 2 Cisco Prime Service Catalog 11.1.1 Virtual Appliance Quick Start Guide Cisco Prime Service Catalog 11.1.1 Virtual Appliance Quick Start Guide 2 Introduction 2 Before You Begin 2 Preparing the Virtual Appliance

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

Helix4Git Administrator Guide March 2018

Helix4Git Administrator Guide March 2018 Helix4Git Administrator Guide 2018.1 March 2018 Copyright 2015-2018 Perforce Software All rights reserved. Perforce Software and documentation is available from www.perforce.com. You can download and use

More information

Deploying Rubrik Datos IO to Protect MongoDB Database on GCP

Deploying Rubrik Datos IO to Protect MongoDB Database on GCP DEPLOYMENT GUIDE Deploying Rubrik Datos IO to Protect MongoDB Database on GCP TABLE OF CONTENTS INTRODUCTION... 1 OBJECTIVES... 1 COSTS... 2 BEFORE YOU BEGIN... 2 PROVISIONING YOUR INFRASTRUCTURE FOR THE

More information

Getting Started with Stratus. Evan Bollig 05/01/2017

Getting Started with Stratus. Evan Bollig 05/01/2017 Getting Started with Stratus Evan Bollig 05/01/2017 Overview What is Stratus? Accessing Stratus Booting Virtual Machines (VMs) Connecting to VMs Working with Volumes Working with Storage Tiers Installing

More information

High-performance computing on Microsoft Azure: GlusterFS

High-performance computing on Microsoft Azure: GlusterFS High-performance computing on Microsoft Azure: GlusterFS Introduction to creating an Azure HPC cluster and HPC storage Azure Customer Advisory Team (AzureCAT) April 2018 Contents Introduction... 3 Quick

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

Quick Installation Guide for RHV/Ovirt

Quick Installation Guide for RHV/Ovirt Quick Installation Guide for RHV/Ovirt 2017 Chengdu Vinchin Technology Co. Ltd. All rights reserved. CONTENTS 1. Create New Virtual Machine...2 2. Install Backup Server ( as master)...5 3. Install Backup

More information

OpenShift Enterprise 3.2 Installation and Configuration. Red Hat OpenShift Documentation Team

OpenShift Enterprise 3.2 Installation and Configuration. Red Hat OpenShift Documentation Team OpenShift Enterprise 3.2 Installation and Configuration Red Hat OpenShift Documentation Team Legal Notice Copyright 207 Red Hat, Inc. The text of and illustrations in this document are licensed by Red

More information

Important DevOps Technologies (3+2+3days) for Deployment

Important DevOps Technologies (3+2+3days) for Deployment Important DevOps Technologies (3+2+3days) for Deployment DevOps is the blending of tasks performed by a company's application development and systems operations teams. The term DevOps is being used in

More information

Quick Start Guide for Intel FPGA Development Tools on the Microsoft* Azure* Platform

Quick Start Guide for Intel FPGA Development Tools on the Microsoft* Azure* Platform Quick Start Guide for Intel FPGA Development Tools on the Microsoft* Azure* Platform Updated for Intel Quartus Prime Design Suite: 17.1 Subscribe Send Feedback Latest document on the web: PDF HTML Contents

More information

Bitnami Apache Solr for Huawei Enterprise Cloud

Bitnami Apache Solr for Huawei Enterprise Cloud Bitnami Apache Solr for Huawei Enterprise Cloud Description Apache Solr is an open source enterprise search platform from the Apache Lucene project. It includes powerful full-text search, highlighting,

More information

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

We are ready to serve Latest Testing Trends, Are you ready to learn?? New Batches Info We are ready to serve Latest Testing 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-40025423

More information

OpenNebula 4.8 Quickstart CentOS 6 and Xen

OpenNebula 4.8 Quickstart CentOS 6 and Xen OpenNebula 4.8 Quickstart CentOS 6 and Xen Release 4.8 OpenNebula Project August 12, 2014 CONTENTS 1 Package Layout 3 2 Step 1. Installation in the Frontend 5 2.1 1.1. Install the repo............................................

More information

Blockchain on Kubernetes

Blockchain on Kubernetes Blockchain on Kubernetes By VMware Introduction Blockchain is an emerging technology which has been gaining traction globally during the past few years. Industries like finance, logistics, IoT, are actively

More information

EDB Postgres Enterprise Manager EDB Ark Management Features Guide

EDB Postgres Enterprise Manager EDB Ark Management Features Guide EDB Postgres Enterprise Manager EDB Ark Management Features Guide Version 7.4 August 28, 2018 by EnterpriseDB Corporation Copyright 2013-2018 EnterpriseDB Corporation. All rights reserved. EnterpriseDB

More information

VMware Identity Manager Connector Installation and Configuration (Legacy Mode)

VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until

More information

Create Test Environment

Create Test Environment Create Test Environment Describes how to set up the Trafodion test environment used by developers and testers Prerequisites Python Passwordless ssh If you already have an existing set of ssh keys If you

More information

Programmable Analog Input Node (PAIN) Master Semester Thesis, Nicolo D Anna.

Programmable Analog Input Node (PAIN) Master Semester Thesis, Nicolo D Anna. Programmable Analog Input Node (PAIN) Master Semester Thesis, Nicolo D Anna. ETH Zu rich June 19, 017 Figure 1: Image of the wire connections between the Pi and Evaluation board. Contents 1 Introduction

More information

OpenNebula 4.4 Quickstart CentOS 6 and ESX 5.x. OpenNebula Project

OpenNebula 4.4 Quickstart CentOS 6 and ESX 5.x. OpenNebula Project OpenNebula 4.4 Quickstart CentOS 6 and ESX 5.x OpenNebula Project December 17, 2013 Copyright 2013 OpenNebula Project, C12G Labs. All rights reserved. Although the information in this document has been

More information

Download and install MySQL server 8 in Windows. Step1: Download windows installer

Download and install MySQL server 8 in Windows. Step1: Download windows installer Download and install MySQL server 8 in Windows Step1: Download windows installer Step 2: Select Developer Default setup type Step 3: Installation Choose Legacy Authentication Method Step 4: Configuration

More information