Important: Upgrades are not supported with this installation method.

Size: px
Start display at page:

Download "Important: Upgrades are not supported with this installation method."

Transcription

1 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. This installation method uses a bootstrap node to administer the DC/OS installation across your cluster. The bootstrap node uses an SSH key to connect to each node in your cluster to automate the DC/OS installation. Important: Upgrades are not supported with this installation method. The DC/OS installation creates these folders: Folder /opt/mesosph ere /etc/systemd /system/dcos. target.wants /etc/systemd /system/dcos. <units> /var/lib/dco s/exhibitor/z Description Contains all the DC/OS binaries, libraries, cluster configuration. Do not modify. Contains the systemd services which start the things that make up systemd. They must live outside of /opt/ mesosphere because of systemd constraints. Contains copies of the units in /etc/systemd/system/ dcos.target.wants. They must be at the top folder as well as inside dcos.target.wants. Contains the ZooKeeper data.

2 ookeeper /var/lib/doc ker /var/lib/dco s /var/lib/mes os Contains the Docker data. Contains the DC/OS data. Contains the Mesos data. Important: Changes to /opt/mesosphere are unsupported. They can lead to unpredictable behavior in DC/OS and prevent upgrades. Prerequisites Your cluster must meet the software and hardware requirements. Configure your cluster 1. Create a directory named genconf on your bootstrap node and navigate to it. mkdir -p genconf 2. Create an ip-detect script. In this step, an IP detect script is created. This script reports the IP address of each node across the cluster. Each node in a DC/OS cluster

3 has a unique IP address that is used to communicate between nodes in the cluster. The IP detect script prints the unique IPv4 address of a node to STDOUT each time DC/OS is started on the node. Important: The IP address of a node must not change after DC/OS is installed on the node. For example, the IP address should not change when a node is rebooted or if the DHCP lease is renewed. If the IP address of a node does change, the node must be wiped and reinstalled. The script must return the same IP address as specified in the config.yaml. For example, if the private master IP is specified as in the config.yaml, your script should return this same value when run on the master. Create an IP detect script for your environment and save as genconf/ip -detect. This script needs to be UTF-8 encoded and have a valid shebang line. You can use the examples below. Use the AWS Metadata Server This method uses the AWS Metadata service to get the IP address: #!/bin/sh # Example ip-detect script using an external authority # Uses the AWS Metadata Service to get the node's internal # ipv4 address curl -fssl Use the GCE Metadata Server This method uses the GCE Metadata Server to get the IP address:

4 #!/bin/sh # Example ip-detect script using an external authority # Uses the GCE metadata server to get the node's internal # ipv4 address curl -fssl -H "Metadata-Flavor: Google" Use the IP address of an existing interface This method discovers the IP address of a particular interface of the node. If you have multiple generations of hardware with different internals, the interface names can change between hosts. The IP detect script must account for the interface name changes. The example script could also be confused if you attach multiple IP addresses to a single interface, or do complex Linux networking, etc. #!/usr/bin/env bash set -o nounset -o errexit export PATH=/usr/sbin:/usr/bin: /usr/sbin:/usr/bin:$path echo $(ip addr show eth0 grep -Eo '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\ Use the network route to the Mesos master This method uses the route to a Mesos master to find the source IP address to then communicate with that node. In this example, we assume that the Mesos master has an IP address of You can use any language for this script. Your

5 Shebang line must be pointed at the correct environment for the language used and the output must be the correct IP address. #!/usr/bin/env bash set -o nounset -o errexit -o pipefail export PATH=/sbin:/usr/sbin:/bin:/usr/bin: /sbin:/usr/sbin:/bin:/usr/bin:$path MASTER_IP=$( $(dig +short master.mesos true) MASTER_IP=${MASTER_IP: } INTERFACE_IP=$( $(ip r g ${MASTER_IP} \ awk -v master_ip=${master_ip} ' BEGIN { ec = 1 } { } if($1 == master_ip) { print $7 ec = 0 } else if($1 == "local") { print $6 ec = 0 } if (ec == 0) exit; END { exit ec } ') echo $INTERFACE_IP 3. Create a configuration file and save as genconf/config.yaml. In this step you create a YAML configuration file that is customized for your environment. DC/OS uses this configuration file during installation to generate your cluster installation files. You can use this template to get started. This template specifies 3 masters, 5 private agents, 1 public agent, a custom proxy, and SSH configuration specified. If your servers are installed with a domain name in your /etc/resolv.conf, you should add dns_search to your conf ig.yaml file. For parameters descriptions and configuration examples, see the documentation. Tips:

6 If Google DNS is not available in your country, you can replace the Google DNS servers and with your local DNS servers. If you specify master_discovery: static, you must also create a script to map internal IPs to public IPs on your bootstrap node (e.g., / genconf/ip-detect-public ). This script is then referenced in ip_de tect_public_filename: <path-to-ip-script>. --- agent_list: - <agent-private-ip-1> - <agent-private-ip-2> - <agent-private-ip-3> - <agent-private-ip-4> - <agent-private-ip-5> # Use this bootstrap_url value unless you have moved the DC/OS installer as bootstrap_url: file:///opt/dcos_install_tmp cluster_name: <cluster-name> exhibitor_storage_backend: static master_discovery: static ip_detect_public_filename: <path-to-ip-script> master_list: - <master-private-ip-1> - <master-private-ip-2> - <master-private-ip-3> public_agent_list: - <public-agent-private-ip> resolvers: ssh_port: 22 ssh_user: <username> use_proxy: 'true' http_proxy: https_proxy: no_proxy: - 'foo.bar.com' - '.baz.com' 4. Copy your private SSH key to genconf/ssh_key. For more information,

7 see the ssh_key_path parameter. cp <path-to-key> genconf/ssh_key && chmod 0600 genconf/ssh_key Install DC/OS In this step you create a custom DC/OS build file on your bootstrap node and then install DC/OS across your cluster nodes with SSH. With this installation method you create a bootstrap server that uses your SSH key and connects to every node to automate the deployment. Important: Do not install DC/OS until you have these items working: ip-detect script, DNS, and NTP everywhere. For help with troubleshooting, see the documentation. If something goes wrong and you want to rerun your setup, use these cluster cleanup instructions. To install DC/OS: 1. Download the DC/OS installer to your root directory. curl -O 2. From your home directory, run the DC/OS installer shell script on your bootstrapping master nodes to generate a customized DC/OS build. The

8 setup script extracts a Docker container that uses the generic DC/OS install files to create customized DC/OS build files for your cluster. The build files are output to./genconf/serve/. Tip: You can view all of the automated command line installer options with the dcos_generate_config.sh --help flag. sudo bash dcos_generate_config.sh --genconf Here is an example of the output. Extracting image from this script and loading into docker daemon, this step dcos-genconf.e060aa49ac4ab62d5e-1e14856f55e5d5d07b.tar Running mesosphere/dcos-genconf docker with BUILD_DIR set to /home/centos/g ==== ==> EXECUTING CONFIGURATION GENERATION... At this point your directory structure should resemble: dcos-genconf.<hash>.tar dcos_generate_config.sh genconf cluster_packages.json config.yaml ip-detect serve ssh_key state 3. Install the cluster prerequisites, including system updates, compression utilities (UnZip, GNU tar, and XZ Utils), and cluster permissions. For a full

9 list of cluster prerequisites, see this documentation. sudo bash dcos_generate_config.sh --install-prereqs Here is an example of the output. Running mesosphere/dcos-genconf docker with BUILD_DIR set to /home/centos/g ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> EXECUTING INSTALL PRERE ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> START install_prereqs ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE install_prereqs ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE install_prereqs ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> END install_prereqs wit ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> SUMMARY ==== ==> dcos_installer.action_lib.prettyprint:: 2 out of 2 hosts successfully 4. Run a preflight script to validate that your cluster is installable. sudo bash dcos_generate_config.sh --preflight Here is an example of the output. Running mesosphere/dcos-genconf docker with BUILD_DIR set to /home/centos/g ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> EXECUTING PREFLIGHT ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> START run_preflight ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE preflight ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE preflight ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE preflight_cleanup ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE preflight_cleanup ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> END run_preflight with ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> SUMMARY

10 ==== ==> dcos_installer.action_lib.prettyprint:: 2 out of 2 hosts successfully Tip: For a detailed view, you can append log level debug ( -v ) to your command. For example sudo bash dcos_generate_config.sh --pref light -v. 5. Install DC/OS on your cluster. sudo bash dcos_generate_config.sh --deploy Here is an example of the output. Running mesosphere/dcos-genconf docker with BUILD_DIR set to /home/centos/g ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> EXECUTING DC/OS INSTALL ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> START deploy_master ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE deploy_master ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE deploy_master_cle ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> END deploy_master with ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> SUMMARY ==== ==> dcos_installer.action_lib.prettyprint:: 1 out of 1 hosts successfully ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> START deploy_agent ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE deploy_agent ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE deploy_agent_clea ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> END deploy_agent with r ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> SUMMARY ==== ==> dcos_installer.action_lib.prettyprint:: 1 out of 1 hosts successfully 6. Run the DC/OS diagnostic script to verify that services are up and running.

11 sudo bash dcos_generate_config.sh --postflight Here is an example of the output. Running mesosphere/dcos-genconf docker with BUILD_DIR set to /home/centos/g ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> EXECUTING POSTFLIGHT ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> START run_postflight ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE postflight ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE postflight ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE postflight_cleanu ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> STAGE postflight_cleanu ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> END run_postflight with ==== ==> dcos_installer.action_lib.prettyprint:: ==== ==> SUMMARY ==== ==> dcos_installer.action_lib.prettyprint:: 2 out of 2 hosts successfully 7. Monitor Exhibitor and wait for it to converge at -ip>:8181/exhibitor/v1/ui/index.html. Tip: If you encounter errors such as Time is marked as bad, adjtim ex, or Time not in sync during Post-Flight, verify that Network Time Protocol (NTP) is enabled on all nodes. For more information, see the system requirements.

12 When the status icons are green, you can access the DC/OS web interface. 8. Launch the DC/OS web interface at and login. If this doesn t work, take a look at the troubleshooting docs

13 You are done!

14 (Optional) Backup your DC/OS installer files It is recommended that you save your DC/OS installer file immediately after installation completes and before you start using DC/OS. These installer files can be used to add more agent nodes to your cluster, including the public agent node. 1. From your bootstrap node, navigate to the genconf/serve directory

15 and package the contents as dcos-install.tar : # <Ctrl-C> to exit installer cd genconf/serve sudo tar cf dcos-install.tar * 2. Copy the dcos-install.tar file to another location for backup. For example, you can use Secure Copy (scp) to copy dcos-install.tar to your home directory: exit scp -i $username@$node-ip:~/genconf/serve/dcos-install.tar ~ Next Steps Add users to your cluster Add a public agent post-installation Install the DC/OS Command-Line Interface (CLI) Troubleshooting DC/OS installation Uninstalling DC/OS Add more agent nodes After DC/OS is installed and deployed across your cluster, you can add more agent nodes. Prerequisite:

16 The agent nodes must meet the hardware and software prerequisites. 1. Update the config.yaml file with the additional agent nodes. For parameters descriptions and configuration examples, see the documentation. 2. Run the installation steps beginning with installing the cluster prerequisites: sudo bash dcos_generate_config.sh --install-prereqs Important: You can ignore the errors that are shown. For example, during the --preflight you may see this error: 18:17:14:: Found an existing DC/OS installation. To reinstall DC/ 18:17:14:: first uninstall DC/OS then run dcos_install.sh. To uni 18:17:14:: documentation provided with DC/OS. 18:17:14:: 18:17:14:: 18:17:14:: ==== ==> :22 FAILED

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

/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/dcos/exhibitor/zookeeper /var/lib/docker /var/lib/dcos

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

/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

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

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

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

DC/OS on Google Compute Engine

DC/OS on Google Compute Engine 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:

More information

Blockchain on Kubernetes User Guide

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

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

Issues Fixed in DC/OS

Issues Fixed in DC/OS Release Notes for 1.10.4 These are the release notes for DC/OS 1.10.4. DOWNLOAD DC/OS OPEN SOURCE Issues Fixed in DC/OS 1.10.4 CORE-1375 - Docker executor does not hang due to lost messages. DOCS-2169

More information

Performing Maintenance Operations

Performing Maintenance Operations This chapter describes how to back up and restore Cisco Mobility Services Engine (MSE) data and how to update the MSE software. It also describes other maintenance operations. Guidelines and Limitations,

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

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version...

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version... Contents Note: pay attention to where you are........................................... 1 Note: Plaintext version................................................... 1 Hello World of the Bash shell 2 Accessing

More information

Using PCF Ops Manager to Deploy Hyperledger Fabric

Using PCF Ops Manager to Deploy Hyperledger Fabric Using PCF Ops Manager to Deploy Hyperledger Fabric By VMware Introduction Pivotal Cloud Foundry Operations Manager (PCF Ops Manager for short) is a graphical interface used to configure and deploy various

More information

Zenoss Core Upgrade Guide

Zenoss Core Upgrade Guide Release 5.1.9 Zenoss, Inc. www.zenoss.com Copyright 2016 Zenoss, Inc. All rights reserved. Zenoss and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States and other

More information

Blockchain on vsphere By VMware

Blockchain on vsphere By VMware Blockchain on vsphere 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

Prerequisites: Students must be proficient in general computing skills but not necessarily experienced with Linux or Unix. Supported Distributions:

Prerequisites: Students must be proficient in general computing skills but not necessarily experienced with Linux or Unix. Supported Distributions: This GL124 course is designed to follow an identical set of topics as the Red Hat RH124 course with the added benefit of very comprehensive lab exercises and detailed lecture material. The Red Hat Enterprise

More information

Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades Q2

Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades Q2 Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades 2017-2018 Q2 Facultat d Informàtica de Barcelona This first lab session is focused on getting experience in working

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

Installing Cisco MSE in a VMware Virtual Machine

Installing Cisco MSE in a VMware Virtual Machine Installing Cisco MSE in a VMware Virtual Machine This chapter describes how to install and deploy a Cisco Mobility Services Engine (MSE) virtual appliance. Cisco MSE is a prebuilt software solution that

More information

Open Agent Container (OAC)

Open Agent Container (OAC) , page 1 This chapter explains the (OAC) environment and its installation in the following Cisco Nexus Switches: Cisco Nexus 5600 Switches Cisco Nexus 6000 Switches OAC is a 32-bit CentOS 6.7-based container

More information

Installing and Upgrading Cisco Network Registrar Virtual Appliance

Installing and Upgrading Cisco Network Registrar Virtual Appliance CHAPTER 3 Installing and Upgrading Cisco Network Registrar Virtual Appliance The Cisco Network Registrar virtual appliance includes all the functionality available in a version of Cisco Network Registrar

More information

LOCAL WALLET (COLD WALLET):

LOCAL WALLET (COLD WALLET): This tutorial will teach you how to create a masternode with a "cold/hot" setup. The whole process is as follows. LOCAL WALLET (COLD WALLET): Visit TRAID platform s official repository on GitHub and download

More information

Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0

Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0 Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0 May 3, 2018 100 Innovative Way - Suite 3322 Nashua, NH 03062 Tel. +1.888.630.PLEX (7539) www.plexxi.com Legal Notices

More information

Configure Dynamic Host Configuration Protocol (DHCP) Image Upgrade Settings on a Switch through the Command Line Interface (CLI)

Configure Dynamic Host Configuration Protocol (DHCP) Image Upgrade Settings on a Switch through the Command Line Interface (CLI) Configure Dynamic Host Configuration Protocol (DHCP) Image Upgrade Settings on a Switch through the Command Line Interface (CLI) Objective The Dynamic Host Configuration Protocol (DHCP) image upgrade feature

More information

Siemens PLM Software. HEEDS MDO Setting up a Windows-to- Linux Compute Resource.

Siemens PLM Software. HEEDS MDO Setting up a Windows-to- Linux Compute Resource. Siemens PLM Software HEEDS MDO 2018.04 Setting up a Windows-to- Linux Compute Resource www.redcedartech.com. Contents Introduction 1 On Remote Machine B 2 Installing the SSH Server 2 Configuring the SSH

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

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

Migrating vrealize Automation 6.2 to 7.2

Migrating vrealize Automation 6.2 to 7.2 Migrating vrealize Automation 6.2 to 7.2 vrealize Automation 7.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Xcalar Installation Guide

Xcalar Installation Guide Xcalar Installation Guide Publication date: 2018-03-16 www.xcalar.com Copyright 2018 Xcalar, Inc. All rights reserved. Table of Contents Xcalar installation overview 5 Audience 5 Overview of the Xcalar

More information

Running Kmeans Spark on EC2 Documentation

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

More information

$ wget V SOLUTIONS.tar.bz2 \ --user=lftraining --password=penguin2014

$ wget   V SOLUTIONS.tar.bz2 \ --user=lftraining --password=penguin2014 3.5. LABS 1 Exercise 3.1: Install Kubernetes Overview There are several Kubernetes installation tools provided by various vendors. In this lab we will learn to use kubeadm As an independent tool, it is

More information

APAR PO06620 Installation Instructions

APAR PO06620 Installation Instructions IBM Corporation APAR PO06620 Installation Instructions IBM Counter Fraud Management 1.5.0.5 IBM Counter Fraud Development 3-31-2017 Table of Contents 1 Fix readme... 1 2 Abstract... 1 3 Contents... 1 4

More information

Network Administration/System Administration (NTU CSIE, Spring 2018) Homework #1. Homework #1

Network Administration/System Administration (NTU CSIE, Spring 2018) Homework #1. Homework #1 Submission Homework #1 Due Time: 2018/3/11 (Sun.) 22:00 Contact TAs: vegetable@csie.ntu.edu.tw Compress all your files into a file named HW1_[studentID].zip (e.g. HW1_bxx902xxx.zip), which contains two

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

ForeScout CounterACT. Configuration Guide. Version 1.2

ForeScout CounterACT. Configuration Guide. Version 1.2 ForeScout CounterACT Endpoint Module: Linux Plugin Version 1.2 Table of Contents About This Plugin... 4 Accessing and Managing Endpoints... 4 Remote Inspection... 4 SecureConnector... 5 What to Do... 5

More information

Table of Contents. Table of Contents License server installation guide - Linux. Download SCL

Table of Contents. Table of Contents License server installation guide - Linux. Download SCL Table of Contents Table of Contents License server installation guide - Linux Download SCL Download Synopsys Installer Install SCL - RHEL and CentOS Install SCL - Debian and Ubuntu Customizing the License

More information

Ubuntu LTS Install Guide

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

More information

Release Notes: J-Web Application Package Release 15.1A4 for Juniper Networks EX Series Ethernet Switches

Release Notes: J-Web Application Package Release 15.1A4 for Juniper Networks EX Series Ethernet Switches Release Notes: J-Web Application Package Release 15.1A4 for Juniper Networks EX Series Ethernet Switches Release 15.1A4 July 2018 Revision 1 Contents Release Notes: J-Web Application Package Release 15.1A4

More information

Administration Dashboard Installation Guide SQream Technologies

Administration Dashboard Installation Guide SQream Technologies Administration Dashboard Installation Guide 1.1.0 SQream Technologies 2018-08-16 Table of Contents Overview................................................................................... 1 1. Prerequisites.............................................................................

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

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

Table of Contents 1.1. Install, Deploy, Maintain Infrastructure Installation Download. Deploy the Appliance

Table of Contents 1.1. Install, Deploy, Maintain Infrastructure Installation Download. Deploy the Appliance Table of Contents Install, Deploy, Maintain Infrastructure Installation Download Deploy the Appliance Installing the Plug-ins vcenter Server for Windows vcenter Server Appliance Open the Required Ports

More information

Infoblox IPAM Driver for Kubernetes User's Guide

Infoblox IPAM Driver for Kubernetes User's Guide Infoblox IPAM Driver for Kubernetes User's Guide 1. Infoblox IPAM Driver for Kubernetes...................................................................... 3 1.1 Overview.......................................................................................

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

Geneious Floating License Manager Version Biomatters Ltd

Geneious Floating License Manager Version Biomatters Ltd Geneious Floating License Manager Version 2.1.2 Biomatters Ltd April 10, 2018 2 Introduction A Geneious Floating License is provided by a server to clients that can request a license over a network. The

More information

NexentaStor VVOL

NexentaStor VVOL NexentaStor 5.1.1 VVOL Admin Guide Date: January, 2018 Software Version: NexentaStor 5.1.1 VVOL Part Number: 3000-VVOL-5.1.1-000065-A Table of Contents Preface... 3 Intended Audience 3 References 3 Document

More information

Infoblox IPAM Driver for Kubernetes. Page 1

Infoblox IPAM Driver for Kubernetes. Page 1 Infoblox IPAM Driver for Kubernetes Page 1 1. CNI-Infoblox IPAM Driver for Kubernetes.................................................................. 3 1.1 Overview.......................................................................................

More information

Intro to Linux. this will open up a new terminal window for you is super convenient on the computers in the lab

Intro to Linux. this will open up a new terminal window for you is super convenient on the computers in the lab Basic Terminal Intro to Linux ssh short for s ecure sh ell usage: ssh [host]@[computer].[otheripstuff] for lab computers: ssh [CSID]@[comp].cs.utexas.edu can get a list of active computers from the UTCS

More information

SSH to your DC/OS cluster on Unix/Linux (macos, Ubuntu, etc) SSH to your DC/OS cluster on Windows

SSH to your DC/OS cluster on Unix/Linux (macos, Ubuntu, etc) SSH to your DC/OS cluster on Windows SSHing into Nodes These instructions explain how to set up an SSH connection to your DC/OS cluster from an outside network. If you are on the same network as your cluster or connected by using VPN, you

More information

Troubleshooting Cisco APIC-EM Single and Multi-Host

Troubleshooting Cisco APIC-EM Single and Multi-Host Troubleshooting Cisco APIC-EM Single and Multi-Host The following information may be used to troubleshoot Cisco APIC-EM single and multi-host: Recovery Procedures for Cisco APIC-EM Node Failures, page

More information

SOA Software API Gateway Appliance 6.3 Administration Guide

SOA Software API Gateway Appliance 6.3 Administration Guide SOA Software API Gateway Appliance 6.3 Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names, logos,

More information

CA Agile Central Administrator Guide. CA Agile Central On-Premises

CA Agile Central Administrator Guide. CA Agile Central On-Premises CA Agile Central Administrator Guide CA Agile Central On-Premises 2018.1 Table of Contents Overview... 3 Server Requirements...3 Browser Requirements...3 Access Help and WSAPI...4 Time Zone...5 Architectural

More information

Deploying Code42 CrashPlan with Jamf Pro. Technical Paper Jamf Pro 9.0 or Later 21 January 2019

Deploying Code42 CrashPlan with Jamf Pro. Technical Paper Jamf Pro 9.0 or Later 21 January 2019 Deploying Code42 CrashPlan with Jamf Pro Technical Paper Jamf Pro 9.0 or Later 21 January 2019 copyright 2002-2019 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate.

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

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

HDI+Talena Resources Deployment Guide. J u n e

HDI+Talena Resources Deployment Guide. J u n e HDI+Talena Resources Deployment Guide J u n e 2 0 1 7 2017 Talena Inc. All rights reserved. Talena, the Talena logo are trademarks of Talena Inc., registered in the U.S. Other company and product names

More information

Singularity: container formats

Singularity: container formats Singularity Easy to install and configure Easy to run/use: no daemons no root works with scheduling systems User outside container == user inside container Access to host resources Mount (parts of) filesystems

More information

Chap2: Operating-System Structures

Chap2: Operating-System Structures Chap2: Operating-System Structures Objectives: services OS provides to users, processes, and other systems structuring an operating system how operating systems are designed and customized and how they

More information

Dell EMC ME4 Series vsphere Client Plug-in

Dell EMC ME4 Series vsphere Client Plug-in Dell EMC ME4 Series vsphere Client Plug-in User's Guide Regulatory Model: E09J, E10J, E11J Regulatory Type: E09J001, E10J001, E11J001 Notes, cautions, and warnings NOTE: A NOTE indicates important information

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

LINUX VPS GUIDE. Pre-requisites: (this guide assumes you are using windows)

LINUX VPS GUIDE. Pre-requisites: (this guide assumes you are using windows) LINUX VPS GUIDE Pre-requisites: (this guide assumes you are using windows) Philscurrency Wallet Download PHILS wallet if you don t have already from the link below https://github.com/philscurrency/philscurrency/releases/download/v1.2/phils

More information

Migrating vrealize Automation 6.2 to 7.1

Migrating vrealize Automation 6.2 to 7.1 Migrating vrealize Automation 6.2 to 7.1 vrealize Automation 7.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Version 4.0 Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

Geneious Floating License Manager Version Biomatters Ltd

Geneious Floating License Manager Version Biomatters Ltd Geneious Floating License Manager Version 2.1.2 Biomatters Ltd August 31, 2016 2 Introduction A Geneious Floating License is provided by a server to clients that can request a license over a network. The

More information

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

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

More information

vsphere Host Profiles Update 1 VMware vsphere 6.5 VMware ESXi 6.5 vcenter Server 6.5

vsphere Host Profiles Update 1 VMware vsphere 6.5 VMware ESXi 6.5 vcenter Server 6.5 Update 1 VMware vsphere 6.5 VMware ESXi 6.5 vcenter Server 6.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this

More information

First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion.

First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion. Warnings 1 First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion. Read the relevant material in Sobell! If

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

Lab Working with Linux Command Line

Lab Working with Linux Command Line Introduction In this lab, you will use the Linux command line to manage files and folders and perform some basic administrative tasks. Recommended Equipment A computer with a Linux OS, either installed

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

Microsoft Cloud Workshop. Containers and DevOps Hackathon Learner Guide

Microsoft Cloud Workshop. Containers and DevOps Hackathon Learner Guide Microsoft Cloud Workshop Containers and DevOps Hackathon Learner Guide September 2017 2017 Microsoft Corporation. All rights reserved. This document is confidential and proprietary to Microsoft. Internal

More information

ForeScout CounterACT Linux Plugin

ForeScout CounterACT Linux Plugin ForeScout CounterACT Linux Plugin Version 1.1.0 Table of Contents About This Plugin... 4 Accessing and Managing Endpoints... 4 Remote Inspection... 4 SecureConnector... 5 What to Do... 5 Requirements...

More information

Deploying Cisco UCS Central

Deploying Cisco UCS Central This chapter includes the following sections: Obtaining the Cisco UCS Central Software from Cisco, page 1 Using the Cisco UCS Central OVA File, page 2 Using the Cisco UCS Central ISO File, page 4 Logging

More information

vcenter Server Appliance Configuration Modified on 17 APR 2018 VMware vsphere 6.7 VMware ESXi 6.7 vcenter Server 6.7

vcenter Server Appliance Configuration Modified on 17 APR 2018 VMware vsphere 6.7 VMware ESXi 6.7 vcenter Server 6.7 vcenter Server Appliance Configuration Modified on 17 APR 2018 VMware vsphere 6.7 VMware ESXi 6.7 vcenter Server 6.7 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Documentation Operations Bridge Premium

Documentation Operations Bridge Premium Operations Bridge 2018.02 Premium Watch AddSubPage Edit History Troubleshoot This section provides information that can help you troubleshoot problems you may encounter when installing and using the ITOM

More information

Dell Storage Integration Tools for VMware

Dell Storage Integration Tools for VMware Dell Storage Integration Tools for VMware Version 4.1 Administrator s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION:

More information

CS370 Operating Systems

CS370 Operating Systems CS370 Operating Systems Colorado State University Yashwant K Malaiya Fall 2016 Lecture 5 Slides based on Text by Silberschatz, Galvin, Gagne Various sources 1 1 User Operating System Interface - CLI CLI

More information

Best practices on deployment of IBM Rational. servers

Best practices on deployment of IBM Rational. servers Best practices on deployment of IBM Rational License key server(rlks) on Linux and Unix servers Pankaj Sharma and Sombir Yadav October 21, 2015 Page 1 of 25 INTRODUCTION CONFIGURATION OF LICENSE FILE ON

More information

Cisco Modeling Labs OVA Installation

Cisco Modeling Labs OVA Installation Prepare for an OVA File Installation, page 1 Download the Cisco Modeling Labs OVA File, page 2 Configure Security and Network Settings, page 2 Deploy the Cisco Modeling Labs OVA, page 12 Edit the Virtual

More information

Zenoss Core Upgrade Guide

Zenoss Core Upgrade Guide Release 5.3.0 Zenoss, Inc. www.zenoss.com Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States

More information

Red Hat Container Development Kit 3.3

Red Hat Container Development Kit 3.3 Red Hat Container Development Kit 3.3 Getting Started Guide Quick-start guide to using and developing with Red Hat Container Development Kit Last Updated: 2018-02-02 Red Hat Container Development Kit

More information

Wallet Installation Guide for Staking on Raspberry PI

Wallet Installation Guide for Staking on Raspberry PI Wallet Installation Guide for Staking on Raspberry PI V2.1 November 2018 CONTENTS 01. Version History... 13 02. Introduction... 3 03. Prerequisites... 13 04. Installation Steps... 6 05. Add an address

More information

Maintaining Cisco Unity Connection Server

Maintaining Cisco Unity Connection Server Migrating a Physical Server to a Virtual Machine, on page 1 Migrating from Cisco Unity 4.x and Later to Unity Connection 7.x and Later, on page 4 Replacing the Non-Functional Server, on page 5 Changing

More information

Linux Kung Fu. Ross Ventresca UBNetDef, Fall 2017

Linux Kung Fu. Ross Ventresca UBNetDef, Fall 2017 Linux Kung Fu Ross Ventresca UBNetDef, Fall 2017 GOTO: https://apps.ubnetdef.org/ What is Linux? Linux generally refers to a group of Unix-like free and open source operating system distributions built

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

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Administrator s Guide Version 3.1 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

CounterACT Macintosh/Linux Property Scanner Plugin

CounterACT Macintosh/Linux Property Scanner Plugin CounterACT Macintosh/Linux Property Scanner Plugin Version 7.0.1 and Above Table of Contents About the Macintosh/Linux Property Scanner Plugin... 4 Requirements... 4 Supported Operating Systems... 4 Accessing

More information

Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches

Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches Release 15.1A1 4 June 2015 Revision 1 Contents Release Notes: J-Web Application Package Release

More information

INSTALLATION RUNBOOK FOR Triliodata + TrilioVault

INSTALLATION RUNBOOK FOR Triliodata + TrilioVault INSTALLATION RUNBOOK FOR Triliodata + TrilioVault Application Type: [Backup and disaster recovery] Application Version: [2.1] MOS Version: [7.0] OpenStack version: [Kilo] Content Document History 1 Introduction

More information

SUREedge MIGRATOR INSTALLATION GUIDE FOR HYPERV

SUREedge MIGRATOR INSTALLATION GUIDE FOR HYPERV SUREedge MIGRATOR INSTALLATION GUIDE 5.0.1 FOR HYPERV 2025 Gateway Place, Suite #480, San Jose, CA, 95110 Important Notice This document is provided "as is" without any representations or warranties, express

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

SUREedge MIGRATOR INSTALLATION GUIDE FOR NUTANIX ACROPOLIS

SUREedge MIGRATOR INSTALLATION GUIDE FOR NUTANIX ACROPOLIS SUREedge MIGRATOR INSTALLATION GUIDE 5.0.1 FOR NUTANIX ACROPOLIS 2025 Gateway Place, Suite #480, San Jose, CA, 95110 Important Notice This document is provided "as is" without any representations or warranties,

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

CIEL Tutorial. Connecting to your personal cluster

CIEL Tutorial. Connecting to your personal cluster CIEL Tutorial This page provides instructions for setting up your own CIEL installation on Amazon's Elastic Compute Cluster (EC2), and running some basic Skywriting jobs. This tutorial is based largely

More information

Patch Server for Jamf Pro Documentation

Patch Server for Jamf Pro Documentation Patch Server for Jamf Pro Documentation Release 0.8.2 Bryson Tyrrell Jun 06, 2018 Contents 1 Change History 3 2 Using Patch Starter Script 7 3 Troubleshooting 9 4 Testing the Patch Server 11 5 Running

More information

Implementing Infoblox Data Connector 2.0

Implementing Infoblox Data Connector 2.0 DEPLOYMENT GUIDE Implementing Infoblox Data Connector 2.0 2017 Infoblox Inc. All rights reserved. Implementing Infoblox Data Connector, July 2017 Page 1 of 31 Contents Overview... 3 Prerequisites... 3

More information

@joerg_schad Nightmares of a Container Orchestration System

@joerg_schad Nightmares of a Container Orchestration System @joerg_schad Nightmares of a Container Orchestration System 2017 Mesosphere, Inc. All Rights Reserved. 1 Jörg Schad Distributed Systems Engineer @joerg_schad Jan Repnak Support Engineer/ Solution Architect

More information

Enable Remote Registry Service Via Command Line

Enable Remote Registry Service Via Command Line Enable Remote Registry Service Via Command Line You can perform a remote shutdown from the command prompt using the shutdown command and You'll also read on other sites to start the Remote Registry service

More information