Chef Integration. Chef Integration. with IDERA s Uptime Cloud Monitor. Simple, Smart, Seamless May 10, 2013 IDERA
|
|
|
- Francine Morris
- 10 years ago
- Views:
Transcription
1 Chef Integration Chef Integration with IDERA s Uptime Cloud Monitor Simple, Smart, Seamless May 10, 2013 IDERA 1
2 Contents Preface Part I Chef + Uptime Cloud Monitor Infographic Part II Integrating Chef Workflows with Uptime Cloud Monitor Performance Monitoring Part III Bootstrap an EC2 Windows Server Instance Part IV Uptime Cloud Monitor Recipes Part V Uptime Cloud Monitor Probe LWRP Summary To learn more visit idera.com today! 2
3 Preface Across Uptime Cloud Monitor (formerly CopperEgg) users, there are numerous deployment methods being utilized to quickly get environments up and running. Chef, from Opscode, is a tool that allows for smart automation, deployment, and more. The Uptime Cloud Monitor Chef Cookbook provides recipes to help gain real-time visibility into the performance and availability of all Chefdeployed applications and services. This Whitepaper will help introduce the integration of Chef workflows with the Uptime Cloud Monitor service and application performance monitoring. 3
4 Part I - Chef + Uptime Cloud Monitor Infographic 4
5 Part II - Integrating Chef Workflows with Uptime Cloud Monitor Performance Monitoring The self-service, automated provisioning of IT resources has come of age and is rapidly becoming ubiquitous. In this paradigm a single DevOps person, armed with tools like Opscode Chef and Puppet, can (almost) instantly bring any number of virtual servers online, each with its own set of application and infrastructure services, and start everything up... and it all just works. The above is absolutely true, but obviously naïve. Achieving that level of automation is possible, but it takes a team of people with time and effort to get there, and an ongoing effort to stay there. While one person can trigger a deployment, it takes a team of folks to learn the tools and build and test all of the components necessary to make that possible. At every step along the path to maintaining a cost-effective automated service deployment, you must always be monitoring. Monitoring application performance, service availability, cost of service delivery, degree of under or over-provisioning, the sensitivity of your service response time to varying customer load, etc. (just to name a few!) is necessary to the process. The purpose of this blog is to introduce you to integrating your Chef workflows with Uptime Cloud Monitor service and application performance monitoring. Assumptions a Chef workstation configured with a chef-repo installed, a Hosted Chef account, or have a Chef server, and you have a cloud provider, from which you can provision and configure nodes, or chef- managed servers. 5
6 1. Setup Add the Uptime Cloud Monitor cookbook to your workstation chef-rep/cookbooks directory: Navigate to the IDERA Uptime Cloud Monitor page at the Opscode Community site, here: Download the copperegg.gz file to your chef-repo/cookbooks directory Unzip as follows: tar -xvzf copperegg.gz 4. With an editor, open the file chef-repo/cookbooks/copperegg/ attributes/default.rb. On line 13 you will see: default[:copperegg][:apikey] = YOUR_USER_APIKEY replace YOUR_USER_APIKEY with your Uptime Cloud Monitor User API Key (you can find it in the Uptime Cloud Monitor UI; click the Settings tab, and scroll down to the bottom of the page) OPTIONAL: Scroll down to the bottom of the default.rb file, and find default[:copperegg][:create_sshprobe] = false ; replace false with true, and an SSH probe will be created for each monitored server. This feature is disabled by default. save default.rb, and close it Upload your new cookbook to your chef server using knife: knife cookbook upload Uptime Cloud Monitor Your CopperEgg cookbook is now installed! Example 1: Bootstrap a Centos EC2 instance with Uptime Cloud Monitor s server monitoring Install the ec2 plug-in for knife: o gem install knife-ec2 Set up your knife.rb for AWS: knife[:aws_access_key_id] = YOUR_AWS_ACCESS_KEY_ID knife[:aws_secret_access_key] = YOUR_AWS_SECRET_ACCESS_KEY knife[:aws_ssh_key_id] = YOUR_AWS_SSH_KEY_ID knife[:identity_file] = PATH_TO_YOUR_PEMFILE On the command line: knife ec2 server create -f t1.micro -G default -I ami N Centos6 -r 6
7 Example 1: Bootstrap a Centos EC2 instance with Uptime Cloud Monitor s server monitoring Instance ID: i f Flavor: t1.micro Image: ami Region: us-east-1 Availability Zone: us-east-1b Security Groups: default Security Group Ids: default Tags: { Name => Centos6 } SSH Key: your-ec2keys Root Device Type: ebs Root Volume ID: vol-0a1234 Root Device Name: /dev/sda Public DNS Name: ec compute-1.amazonaws.com Public IP Address: Private DNS Name: ip ec2.internal Private IP Address: Environment: _default Run List: copperegg Now log in to your CopperEgg UI, and click on the Systems tab. You will see a widget representing your newly-provisioned EC2 Centos6 server instance, which will look similar to the below: 7
8 Things to notice: The -r copperegg appended to the knife ec2 server create command means run the default copperegg recipe. The final line of the response (Run List: copperegg) indicates that this command was carried out. Also notice the second-to-last line, Environment: _default. That is referring to the name of my Chef environment. By default, when you add the Uptime Cloud Monitor recipe to the run list of any chef-managed node, the Chef environment, roles assigned to the node, and any Chef tags applied to the node will be propagated to Uptime Cloud Monitor as tags. Notice that the _default tag appears in the widget in the above picture. If you set default[:copperegg][:create_sshprobe] = true in the attributes/ default.rb file, click on the Probes tab in the Uptime Cloud Monitor UI. There you will see a widget representing the newly created SSH probe that was created to monitor SSH port availability to your new server. It will appear similar to that shown below: Again, notice that the Chef environment tag appears on the probe widget. 8
9 Part III - Bootstrap an EC2 Windows Server Instance Below are details on how you can use Chef to bootstrap an EC2 Windows server instance, also with Uptime Cloud Monitor server monitoring up and running. Important: Do This First when deploying on Windows! The Uptime Cloud Monitor Cookbook contains a file named metadata.rb. Open this file with you favorite editor, and find the following lines: # Uncomment to include support for Windows #depends windows Un-comment the second line: depends windows Now save the file, and close. What s up with that? If your deployments do not include Windows, leaving this line commented- out makes the most sense, to minimize your chef run times. If your deployments include windows, you will need to uncomment this line. My understanding is that in a future release of Chef, there will be simple means of making depends platform-specific. 1. Example 2: Bootstrap a Windows EC2 instance with Uptime Cloud Monitor server monitoring First, prepare your EC2 Windows instance (clearly, this preparation should be done on a single EC2 instance, and the AMI saved; then do your bootstrapping using your saved AMI, which will include your auth credentials and this winrm prep.) Log in to your Windows server instance Open a command prompt 9
10 On Windows Server 2012, open a command prompt as follows: Open a PowerShell consoles as administrator o If necessary, update your execution policy Set-ExecutionPolicy Unrestricted cmd.exe /c start cmd /k Pslist A windows command prompt will appear Note also that you may have to change your Windows Firewall settings differently on Windows Server 2012 vs. previous releases. Execute the following commands : winrm quickconfig q winrm set 300 } winrm set } winrm set true } winrm set true } (this would be a good point to create your own AMI instance.) Install the ec2 plug-in for knife gem install knife-ec2 Install the windows plug-in for windows gem install knife-windows Set up your knife.rb for AWS: knife[:aws_access_key_id] = YOUR_AWS_ACCESS_KEY_ID knife[:aws_secret_access_key] = YOUR_AWS_SECRET_ACCESS_KEY knife[:aws_ssh_key_id] = YOUR_AWS_SSH_KEY_ID knife[:identity_file] = PATH_TO_YOUR_PEMFILE on the command line: knife bootstrap windows winrm ec2-xxx-xx-xx-xxx.compute- 1.amazonaws.com -x Administrator -P YourPassword -r copperegg node-name winserver-12 You should see a new widget on your Uptime Cloud Monitor System Dashboard for the newly bootstrapped Windows server. One last note, for those who are just getting started with Chef on Windows: you can fire off a chef run from your terminal with the following command: knife winrm ec2- XXX-XX-XX-XXX.compute-1.amazonaws.com chef-client -c c:/chef/client.rb -m -x Administrator -P YourPassword 10
11 Part IV Uptime Cloud Monitor Recipes In the Uptime Cloud Monitor Cookbook/recipes directory, you will find: default.rb copperegg-handler.rb reload.rb restart.rb start.rb stop.rb uninstall.rb The first two listed (default and copperegg-hander) are likely the only two recipes that you will ever use. The other 5 are provided for covering use cases that we can imagine, but don t expect to occur. default.rb This is the recipe that will be installed when you add copperegg to your run list. Its principle function is to install the Uptime Cloud Monitor collector, and will work for most Linux distributions and Windows operating systems. *** Important: When you first install the Uptime Cloud Monitor cookbook, you need to edit the associated attributes file, which is found here: copperegg/ attributes/default.rb. Open that file with your editor, and modify the line reproduced below by replacing YOUR_USER_APIKEY with your User API Key. default[:copperegg][:apikey] = YOUR_USER_APIKEY All of the other settings have defaults and shouldn t be a surprise, but I ll cover them later. 11
12 copperegg-handler.rb This is a plug-in to the Chef Reporting and Exception system. With the copperegg-handler installed, failed Chef runs will be posted as Annotations on your CopperEgg graphs. Optionally, you can post failed AND successful runs, which may seem like overkill, but are valuable if your do chef runs ad-hoc. Here are the steps to enable Annotations for a chef-managed instance: In each recipe or run list that you have included copperegg, add the following: chef_handler copperegg::copperegg-handler That s all! You will begin seeing new Annotations immediately after your next Chef run. reload.rb This recipe could be named reinstall because that is just what it does. Should a circumstance arise when you want to re-install the collector, you have two choices: uninstall / reinstall in 2 chef runs: replace copperegg with copperegg::uninstall ; chef run then replace copperegg::uninstall with copperegg ; chef run reload insert copperegg::reload above copperegg in your run list chef run At the end of the chef run with copperegg::reload included, the collector will have been uninstalled and re-installed, and copperegg::reload will be automatically removed from your run list. restart.rb start.rb stop.rb These scripts are included for you to start, stop, and restart the collector service, independent of the operating system upon which the collector is running. uninstall.rb Replace copperegg with copperegg::uninstall in your run list to stop the collector, and uninstall all CopperEgg software. 12
13 Part V - Uptime Cloud Monitor Probe LWRP Uptime Cloud Monitor recently introduced its probe LWRP, which is included in the Uptime Cloud Monitor cookbook. You will find the probe resources and provider here: copperegg/resources/probe.rb copperegg/providers/probe.rb This provider allows you to instantly add, update and remove any number of external probes on any chef run. **Example: Add an ssh probe for each EC2 server instance as it is brought up The following code could be placed in a recipe, and added to the run list for each EC2 Linux server that will be brought up: host = CheckPort22_#{node[ hostname ]} target = #{node[ ec2 ][ public_ hostname ]}:22 copperegg_probe host do provider copperegg_probe action :update probe_desc host probe_dest target type TCP end host is the string that we ll use to name or describe the probe we re creating. target is the destination IP:port to probe. ASIDE: The above is nearly identical to the code you will find in copperegg/ recipes/default.rb. In fact, an attribute exists in copperegg/attributes/ default.rb that if set, will cause a new ssh probe to be created for each of the Linux servers you boot (if they are EC2 instances). The attributes is: default[:copperegg][:create_sshprobe] = false 13
14 To remove the above probe, you would make a call similar to the above, with the action set for delete: host = CheckPort22_#{node[ hostname ]} target = #{node[ ec2 ][ public_hostname ]}:22 copperegg_probe host do provider copperegg_probe action :delete probe_desc host probe_dest target type TCP end (This is effectively the same code as that found in the uninstall recipe.) Key points: Three parameters combine to define a unique probe: probe_desc: the probe description (name) probe_dest: probe target address type: the probe type (GET, POST, TCP or ICMP). These three parameters are the minimum required to create a probe. All other parameters have reasonable defaults, which can be overridden. The various parameters are described in the probe resources file, copperegg/resources/probe.rb. Extensive details about the Uptime Cloud Monitor probe API can be found here: 14
15 Summary Chef is a great automation and deployment tool that goes hand in hand with Uptime Cloud Monitor server and application performance monitoring. Automated infrastructure is not complete without maintenance and monitoring. Many find integrating monitoring solutions into the automation process to be a seamless way to ensure performance. We hope you found this whitepaper a useful tool to learn how to install the Uptime Cloud Monitor cookbook, bootstrap EC2 servers, and integrate Uptime Cloud Monitor into the automation process. Be sure to check out the Uptime Cloud Monitor Chef Cookbook. For more information: 15
USER CONFERENCE 2011 SAN FRANCISCO APRIL 26 29. Running MarkLogic in the Cloud DEVELOPER LOUNGE LAB
USER CONFERENCE 2011 SAN FRANCISCO APRIL 26 29 Running MarkLogic in the Cloud DEVELOPER LOUNGE LAB Table of Contents UNIT 1: Lab description... 3 Pre-requisites:... 3 UNIT 2: Launching an instance on EC2...
Running Knn Spark on EC2 Documentation
Pseudo code Running Knn Spark on EC2 Documentation Preparing to use Amazon AWS First, open a Spark launcher instance. Open a m3.medium account with all default settings. Step 1: Login to the AWS console.
Opsview in the Cloud. Monitoring with Amazon Web Services. Opsview Technical Overview
Opsview in the Cloud Monitoring with Amazon Web Services Opsview Technical Overview Page 2 Opsview In The Cloud: Monitoring with Amazon Web Services Contents Opsview in The Cloud... 3 Considerations...
HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION
HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION Version 1.1 / Last updated November 2012 INTRODUCTION The Cloud Link for Windows client software is packaged as an MSI (Microsoft Installer)
INSTALLING KAAZING WEBSOCKET GATEWAY - HTML5 EDITION ON AN AMAZON EC2 CLOUD SERVER
INSTALLING KAAZING WEBSOCKET GATEWAY - HTML5 EDITION ON AN AMAZON EC2 CLOUD SERVER A TECHNICAL WHITEPAPER Copyright 2012 Kaazing Corporation. All rights reserved. kaazing.com Executive Overview This document
Guide to the LBaaS plugin ver. 1.0.2 for Fuel
Guide to the LBaaS plugin ver. 1.0.2 for Fuel Load Balancing plugin for Fuel LBaaS (Load Balancing as a Service) is currently an advanced service of Neutron that provides load balancing for Neutron multi
ADFS 2.0 Application Director Blueprint Deployment Guide
Introduction: ADFS 2.0 Application Director Blueprint Deployment Guide Active Directory Federation Service (ADFS) is a software component from Microsoft that allows users to use single sign-on (SSO) to
Zend Server Amazon AMI Quick Start Guide
Zend Server Amazon AMI Quick Start Guide By Zend Technologies www.zend.com Disclaimer This is the Quick Start Guide for The Zend Server Zend Server Amazon Machine Image The information in this document
Biznet GIO Cloud Connecting VM via Windows Remote Desktop
Biznet GIO Cloud Connecting VM via Windows Remote Desktop Introduction Connecting to your newly created Windows Virtual Machine (VM) via the Windows Remote Desktop client is easy but you will need to make
Comsol Multiphysics. Running COMSOL on the Amazon Cloud. VERSION 4.3a
Comsol Multiphysics Running COMSOL on the Amazon Cloud VERSION 4.3a Running COMSOL on the Amazon Cloud 1998 2012 COMSOL Protected by U.S. Patents 7,519,518; 7,596,474; and 7,623,991. Patents pending. This
There are numerous ways to access monitors:
Remote Monitors REMOTE MONITORS... 1 Overview... 1 Accessing Monitors... 1 Creating Monitors... 2 Monitor Wizard Options... 11 Editing the Monitor Configuration... 14 Status... 15 Location... 17 Alerting...
SOA Software API Gateway Appliance 7.1.x Administration Guide
SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,
OpenTOSCA Release v1.1. Contact: [email protected] Documentation Version: March 11, 2014 Current version: http://files.opentosca.
OpenTOSCA Release v1.1 Contact: [email protected] Documentation Version: March 11, 2014 Current version: http://files.opentosca.de NOTICE This work has been supported by the Federal Ministry of Economics
AWS CodePipeline. User Guide API Version 2015-07-09
AWS CodePipeline User Guide AWS CodePipeline: User Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in connection
Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud
Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud David Pae, Ulf Schoo June 2013 (Please consult http://aws.amazon.com/windows/
AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts
AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,
Deploy XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 with Amazon VPC
XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 Deploy XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 with Amazon VPC Prepared by: Peter Bats Commissioning Editor: Linda Belliveau Version: 5.0 Last Updated:
About the VM-Series Firewall
About the VM-Series Firewall Palo Alto Networks VM-Series Deployment Guide PAN-OS 6.0 Contact Information Corporate Headquarters: Palo Alto Networks 4401 Great America Parkway Santa Clara, CA 95054 http://www.paloaltonetworks.com/contact/contact/
Using The Hortonworks Virtual Sandbox
Using The Hortonworks Virtual Sandbox Powered By Apache Hadoop This work by Hortonworks, Inc. is licensed under a Creative Commons Attribution- ShareAlike3.0 Unported License. Legal Notice Copyright 2012
DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014
DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014 Contents Overview... 2 System requirements:... 2 Before installing... 3 Download and installation... 3 Configure DESLock+ Enterprise Server...
KeyControl Installation on Amazon Web Services
KeyControl Installation on Amazon Web Services Contents Introduction Deploying an initial KeyControl Server Deploying an Elastic Load Balancer (ELB) Adding a KeyControl node to a cluster in the same availability
Leveraging SAP HANA & Hortonworks Data Platform to analyze Wikipedia Page Hit Data
Leveraging SAP HANA & Hortonworks Data Platform to analyze Wikipedia Page Hit Data 1 Introduction SAP HANA is the leading OLTP and OLAP platform delivering instant access and critical business insight
tpischeduler tpischeduler TotalFBO tpischeduler TotalFBO Initial Installation tpischeduler TotalFBO tpischeduler
tpischeduler tpischeduler is a plug-in to TotalFBO which provides an online interface to your database. This enables customers and staff to view, change, and delete their own appointments as well as print
Cloudera Manager Training: Hands-On Exercises
201408 Cloudera Manager Training: Hands-On Exercises General Notes... 2 In- Class Preparation: Accessing Your Cluster... 3 Self- Study Preparation: Creating Your Cluster... 4 Hands- On Exercise: Working
AWS Service Catalog. User Guide
AWS Service Catalog User Guide AWS Service Catalog: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in
19.10.11. Amazon Elastic Beanstalk
19.10.11 Amazon Elastic Beanstalk A Short History of AWS Amazon started as an ECommerce startup Original architecture was restructured to be more scalable and easier to maintain Competitive pressure for
RSA Security Analytics
RSA Security Analytics Event Source Log Configuration Guide Microsoft Windows using Eventing Collection Last Modified: Thursday, July 30, 2015 Event Source Product Information: Vendor: Microsoft Event
VXOA AMI on Amazon Web Services
2013 Silver Peak Systems, Inc. QUICK START GUIDE VXOA AMI on Amazon Web Services A Silver Peak Virtual Appliance (VX) can be deployed within an Amazon Web Services (AWS) cloud environment to accelerate
LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013
LOCKSS on LINUX CentOS6 Installation Manual 08/22/2013 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 6 BIOS Settings... 9 Installation... 10 Firewall Configuration...
Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1
Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 This document supports the version of each product listed and supports all subsequent versions until the document
VX 9000E WiNG Express Manager INSTALLATION GUIDE
VX 9000E WiNG Express Manager INSTALLATION GUIDE 2 VX 9000E WiNG Express Manager Service Information If you have a problem with your equipment, contact support for your region. Support and issue resolution
Distributed convex Belief Propagation Amazon EC2 Tutorial
6/8/2011 Distributed convex Belief Propagation Amazon EC2 Tutorial Alexander G. Schwing, Tamir Hazan, Marc Pollefeys and Raquel Urtasun Distributed convex Belief Propagation Amazon EC2 Tutorial Introduction
Eucalyptus 3.4.2 User Console Guide
Eucalyptus 3.4.2 User Console Guide 2014-02-23 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...4 Install the Eucalyptus User Console...5 Install on Centos / RHEL 6.3...5 Configure
Cloud Provision Widget 1.41
Cloud Provision Widget is a simple web-based widget for demonstrating the Infoblox Cloud Automation plug-ins functionality as well as WAPI functionality. The widget has been designed for service delivery
Host your websites. The process to host a single website is different from having multiple sites.
The following guide will help you to setup the hosts, in case you want to run multiple websites on your VPS. This is similar to setting up a shared server that hosts multiple websites, using a single shared
Networking Configurations for NetApp Cloud ONTAP TM for AWS
Technical Report Networking Configurations for NetApp Cloud ONTAP TM for AWS Kris Lippe, NetApp November 2014 TR-4352 TABLE OF CONTENTS 1 Introduction...3 1.1 Glossary of Terms:...3 1.2 Overview...4 1.3
DevOps Course Content
DevOps Course Content INTRODUCTION TO DEVOPS What is DevOps? History of DevOps Dev and Ops DevOps definitions DevOps and Software Development Life Cycle DevOps main objectives Infrastructure As A Code
Network Probe User Guide
Network Probe User Guide Network Probe User Guide Table of Contents 1. Introduction...1 2. Installation...2 Windows installation...2 Linux installation...3 Mac installation...4 License key...5 Deployment...5
freesshd SFTP Server on Windows
freesshd SFTP Server on Windows Configuration Steps: Setting up the Bridgestone User ID... 2 Setup the freesshd Server... 3 Login as the Bridgestone User ID using WinSCP... 5 Create Default Bridgestone
Installing and Configuring vcloud Connector
Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new
MATLAB Distributed Computing Server Cloud Center User s Guide
MATLAB Distributed Computing Server Cloud Center User s Guide How to Contact MathWorks Latest news: Sales and services: User community: Technical support: www.mathworks.com www.mathworks.com/sales_and_services
Click Studios. Passwordstate. Password Discovery, Reset and Validation. Requirements
Passwordstate Password Discovery, Reset and Validation Requirements This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise
SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud
SUSE Manager in the Public Cloud SUSE Manager Server in the Public Cloud Contents 1 Instance Requirements... 2 2 Setup... 3 3 Registration of Cloned Systems... 6 SUSE Manager delivers best-in-class Linux
Jenkins and Chef Infrastructure CI and Application Deployment
Jenkins and Chef Infrastructure CI and Application Deployment Dan Stine Copyright Clearance Center www.copyright.com June 18, 2014 #jenkinsconf About Me! Software Architect! Library & Framework Developer!
F-SECURE MESSAGING SECURITY GATEWAY
F-SECURE MESSAGING SECURITY GATEWAY DEFAULT SETUP GUIDE This guide describes how to set up and configure the F-Secure Messaging Security Gateway appliance in a basic e-mail server environment. AN EXAMPLE
Monitoring Clearswift Gateways with SCOM
Technical Guide Version 01 28/11/2014 Documentation Information File Name Document Author Document Filename Monitoring the gateways with _v1.docx Iván Blesa Monitoring the gateways with _v1.docx Issue
Download/Install IDENTD
Download/Install IDENTD IDENTD is the small software program that must be installed on each user s computer if multiple filters are to be used in ComSifter. The program may be installed and executed locally
Healthstone Monitoring System
Healthstone Monitoring System Patrick Lambert v1.1.0 Healthstone Monitoring System 1 Contents 1 Introduction 2 2 Windows client 2 2.1 Installation.............................................. 2 2.2 Troubleshooting...........................................
How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint
StoreGrid Linux Server Installation Guide Before installing StoreGrid as Backup Server (or) Replication Server in your machine, you should install MySQL Server in your machine (or) in any other dedicated
CTERA Agent for Linux
User Guide CTERA Agent for Linux September 2013 Version 4.0 Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written
Deploy Remote Desktop Gateway on the AWS Cloud
Deploy Remote Desktop Gateway on the AWS Cloud Mike Pfeiffer April 2014 Last updated: May 2015 (revisions) Table of Contents Abstract... 3 Before You Get Started... 3 Three Ways to Use this Guide... 4
WhatsUp Gold v16.1 Installation and Configuration Guide
WhatsUp Gold v16.1 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.1 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines
Snapt Redundancy Manual
Snapt Redundancy Manual Version 2.0 p. 1 Contents Chapter 1: Introduction... 3 Installation... 3 Chapter 2: Settings... 4 Chapter 3: Server Management... 6 Chapter 4: Virtual IP Management... 7 Chapter
Microsoft Windows Server Failover Clustering (WSFC) and SQL Server AlwaysOn Availability Groups on the AWS Cloud: Quick Start Reference Deployment
Microsoft Windows Server Failover Clustering (WSFC) and SQL Server AlwaysOn Availability Groups on the AWS Cloud: Quick Start Reference Deployment Mike Pfeiffer July 2014 Last updated: September 2015 (revisions)
WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide
WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see
Connection Broker Managing User Connections to Workstations, Blades, VDI, and More. Quick Start with Microsoft Hyper-V
Connection Broker Managing User Connections to Workstations, Blades, VDI, and More Quick Start with Microsoft Hyper-V Version 8.1 October 21, 2015 Contacting Leostream Leostream Corporation http://www.leostream.com
RDS Migration Tool Customer FAQ Updated 7/23/2015
RDS Migration Tool Customer FAQ Updated 7/23/2015 Amazon Web Services is now offering the Amazon RDS Migration Tool a powerful utility for migrating data with minimal downtime from on-premise and EC2-based
Configuring. Moodle. Chapter 82
Chapter 82 Configuring Moodle The following is an overview of the steps required to configure the Moodle Web application for single sign-on (SSO) via SAML. Moodle offers SP-initiated SAML SSO only. 1 Prepare
Step by step guide for installing highly available System Centre 2012 Virtual Machine Manager Management server:
Step by step guide for installing highly available System Centre 2012 Virtual Machine Manager Management server: Here are the pre-requisites for a HA VMM server installation: 1. Failover clustering feature
Cisco UCS CPA Workflows
This chapter contains the following sections: Workflows for Big Data, page 1 About Service Requests for Big Data, page 2 Workflows for Big Data Cisco UCS Director Express for Big Data defines a set of
Moving to Plesk Automation 11.5
Moving to Plesk Automation 11.5 Last updated: 2 June 2015 Contents About This Document 4 Introduction 5 Preparing for the Move 7 1. Install the PA Moving Tool... 8 2. Install Mail Sync Software (Windows
ICONICS Using the Azure Cloud Connector
Description: Guide to use the Azure Cloud Connector General Requirement: Valid account for Azure, including Cloud Service, SQL Azure and Azure Storage. Introduction Cloud Connector is a FrameWorX Server
Mobile Labs Plugin for IBM Urban Code Deploy
Mobile Labs Plugin for IBM Urban Code Deploy Thank you for deciding to use the Mobile Labs plugin to IBM Urban Code Deploy. With the plugin, you will be able to automate the processes of installing or
Talari Virtual Appliance CT800. Getting Started Guide
Talari Virtual Appliance CT800 Getting Started Guide March 18, 2015 Table of Contents About This Guide... 2 References... 2 Request for Comments... 2 Requirements... 3 AWS Resources... 3 Software License...
LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011
LOCKSS on LINUX Installation Manual and the OpenBSD Transition 02/17/2011 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 7 BIOS Settings... 10 Installation... 11 Firewall
WRITING HONEYPOINT PLUGINS WITH HONEYPOINT SECURITY SERVER
WRITING HONEYPOINT PLUGINS WITH HONEYPOINT SECURITY SERVER Revision: 1.0 MicroSolved, Inc. telephone: 614.351.1237 email: [email protected] Table of Contents Overview! 2 What are HoneyPoint Plugins
Local Caching Servers (LCS): User Manual
Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading
Amazon Web Services EC2 & S3
2010 Amazon Web Services EC2 & S3 John Jonas FireAlt 3/2/2010 Table of Contents Introduction Part 1: Amazon EC2 What is an Amazon EC2? Services Highlights Other Information Part 2: Amazon Instances What
Immersion Day. Creating an Elastic Load Balancer. Rev 2015-01
Rev 2015-01 Table of Contents Overview...3 Launch a Second Web Server...4 Create an ELB...6 Copyright 2015, Amazon Web Services, All Rights Reserved Page 2 Overview This lab will walk the user through
Vormetric Data Firewall for AWS. All-in-Cloud Installation Guide
Vormetric Data Firewall for AWS All-in-Cloud Installation Guide Document Version 1.2 January 29, 2014 All-in-Cloud Installation Guide Vormetric Data Security All-in-Cloud Installation Guide Document Version
Comsol Multiphysics. Running COMSOL on the Amazon Cloud. VERSION 4.3b
Comsol Multiphysics Running COMSOL on the Amazon Cloud VERSION 4.3b Running COMSOL on the Amazon Cloud 1998 2013 COMSOL Protected by U.S. Patents 7,519,518; 7,596,474; and 7,623,991. Patents pending. This
Web Application Firewall
Web Application Firewall Getting Started Guide August 3, 2015 Copyright 2014-2015 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks
Windows XP Service Pack 2 Windows Firewall Group Policy Setup for Executive Software Products
Windows XP Service Pack 2 Windows Firewall Group Policy Setup for Executive Software Products 1.0 Overview By default, Windows XP Service Pack 2 (SP2) enables Windows Firewall, previously known as Internet
AdWhirl Open Source Server Setup Instructions
AdWhirl Open Source Server Setup Instructions 11/09 AdWhirl Server Setup Instructions The server runs in Amazon s web cloud. To set up the server, you need an Amazon Web Services (AWS) account and the
Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.
Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.
Installing and Configuring vcenter Support Assistant
Installing and Configuring vcenter Support Assistant vcenter Support Assistant 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced
6.0. Getting Started Guide
6.0 Getting Started Guide Netmon Getting Started Guide 2 Contents Contents... 2 Appliance Installation... 3 IP Address Assignment (Optional)... 3 Logging In For the First Time... 5 Initial Setup... 6 License
OSF INTEGRATOR for. Integration Guide
OSF INTEGRATOR for DEMANDWARE and MICROSOFT DYNAMICS CRM 2013 Integration Guide Table of Contents 1 Summary... 3 2 Component Overview... 3 2.1 Functional Overview... 3 2.2 Integration components... 3 2.3
CloudCIX Bootcamp. The essential IaaS getting started guide. http://www.cix.ie
The essential IaaS getting started guide. http://www.cix.ie Revision Date: 17 th August 2015 Contents Acronyms... 2 Table of Figures... 3 1 Welcome... 4 2 Architecture... 5 3 Getting Started... 6 3.1 Login
Automated Configuration of Open Stack Instances at Boot Time
Automated Configuration of Open Stack Instances at Boot Time N Praveen 1, Dr. M.N.Jayaram 2 Post Graduate Student 1, Associate Professor 2, EC Department, SJCE, Mysuru, India Abstract: Cloud Computing
WhatsUp Gold v16.3 Installation and Configuration Guide
WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard
CycleServer Grid Engine Support Install Guide. version 1.25
CycleServer Grid Engine Support Install Guide version 1.25 Contents CycleServer Grid Engine Guide 1 Administration 1 Requirements 1 Installation 1 Monitoring Additional OGS/SGE/etc Clusters 3 Monitoring
CHEF IN THE CLOUD AND ON THE GROUND
CHEF IN THE CLOUD AND ON THE GROUND Michael T. Nygard Relevance [email protected] @mtnygard Infrastructure As Code Infrastructure As Code Chef Infrastructure As Code Chef Development Models
Automating Cloud Security with Centrify Express and RightScale
QUICK START GUIDE. MAY 2011 Automating Cloud Security with Centrify Express and RightScale How to secure cloud systems by joining them to your Active Directory infrastructure Abstract This Quick Start
Freshservice Discovery Probe User Guide
Freshservice Discovery Probe User Guide 1. What is Freshservice Discovery Probe? 1.1 What details does Probe fetch? 1.2 How does Probe fetch the information? 2. What are the minimum system requirements
DVS-100 Installation Guide
DVS-100 Installation Guide DVS-100 can be installed on any system running the Ubuntu 14.04 64 bit Linux operating system, the guide below covers some common installation scenarios. Contents System resource
Creating a DUO MFA Service in AWS
Amazon AWS is a cloud based development environment with a goal to provide many options to companies wishing to leverage the power and convenience of cloud computing within their organisation. In 2013
Acronis Backup & Recovery 11.5 Quick Start Guide
Acronis Backup & Recovery 11.5 Quick Start Guide Applies to the following editions: Advanced Server for Windows Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server
WhatsUp Gold v16.2 Installation and Configuration Guide
WhatsUp Gold v16.2 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.2 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines
Using DSC with Visual Studio Release Management
Using DSC with Visual Studio Release Management With Microsoft Release Management 2013 Update 3 CTP 1 (RM), you can now use Windows PowerShell or Windows PowerShell Desired State Configuration (DSC) feature
Adaptive Log Exporter Users Guide
IBM Security QRadar Version 7.1.0 (MR1) Note: Before using this information and the product that it supports, read the information in Notices and Trademarks on page page 119. Copyright IBM Corp. 2012,
Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services
Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services MCN 2009: Cloud Computing Primer Workshop Charles Moad
How to add your Weebly website to a TotalCloud hosted Server
How to add your Weebly website to a TotalCloud hosted Server Creating your Weebly website: 1.) Go to weebly.com and create a free account. 2.) Build and design your personal website using the Weebly features.
Overview and Deployment Guide. Sophos UTM on AWS
Overview and Deployment Guide Sophos UTM on AWS Overview and Deployment Guide Document date: November 2014 1 Sophos UTM and AWS Contents 1 Amazon Web Services... 4 1.1 AMI (Amazon Machine Image)... 4 1.2
Continuous Delivery on AWS. Version 1.0 DO NOT DISTRIBUTE
Continuous Version 1.0 Copyright 2013, 2014 Amazon Web Services, Inc. and its affiliates. All rights reserved. This work may not be reproduced or redistributed, in whole or in part, without prior written
System Administration Training Guide. S100 Installation and Site Management
System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5
Foglight. Foglight for Virtualization, Free Edition 6.5.2. Installation and Configuration Guide
Foglight Foglight for Virtualization, Free Edition 6.5.2 Installation and Configuration Guide 2013 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.
