Puppet 101 Basic installation for master and agent machines on Ubuntu with VMware Workstation

Size: px
Start display at page:

Download "Puppet 101 Basic installation for master and agent machines on Ubuntu with VMware Workstation"

Transcription

1 Puppet 101 Basic installation for master and agent machines on Ubuntu with VMware Workstation You don t have to go far to hear the word Puppet these days. Configuration management isn t just a new trend that is hitting IT environments. It is a methodology for stateful, repeatable, DevOps style management of your infrastructure. For the VMware folks, this is now a part of the vcloud ecosystem in a way because of the integration of Puppet into the vcloud Hybrid Service (vchs) that was recently announced. Most Common Question Nearly every single day I hear from someone Puppet looks cool, I need to figure out how to use it. This inevitably leads to the most common question: How do I get started with Puppet? Before you say I don t use Linux, don t worry. What I want to do here is to show you the simplest step-by-step way to install Ubuntu on a server and a client with Puppet server and a Puppet agent configuration. Let me be clear that our Puppet installation here isn t difficult, but it does require some time and you have to be sure to follow the process, albeit concise, without missing any steps. Two Flavors of Puppet to Start Off With There are two distinct types of Puppet deployment: Enterprise or Open Source. This leads to the next challenge for many, which is finding out which is the appropriate one to run with. Hint: They are both great to start with With the Puppet Enterprise environment ( you can deploy easily using the web dashboard, manage your environment with the full backing of the Puppet team. It has all sorts of reasons to make it an amazing fit for you. That being said, it is also a commercial product which comes with a license and support cost. This is not a problem for your real production deployment where you need/want that support, but we just want to kick the tires on it first to figure out how to use it. Enter Puppet Open Source ( which lets us use the fully open source version of the product, and the price tag is a grand total of zero dollars. Well, capital expense is zero, but there are some requirements for running this which include comfort with the Linux environment. Basic Installation For Brand New Users I m going to use my VMware Workstation environment to start things off. I also have the Ubuntu 64- bit Server LTS (Long Term Support) ISO file which I ll use for deploying. Before we get started, you need to go here to download that:

2 Now that you have your requirements, let s install our two virtual guests which will be using DHCP (easiest deployment to get us started quickly) using the names puppetserver and puppetclient for our virtual machines. We will use the VMware Workstation easy install wizard to quickly deploy the guest OS. Install Our First VM (puppetserver) Using or VMware Workstation, we will create a new virtual guest by choosing File New Virtual Machine and using the steps below:

3 At this point you have to choose your username that will be your login account to the Ubuntu console. Type in your full name, a user name and a password:

4

5

6

7

8

9

10 Install Our Second VM (puppetclient) Rather than repeating all of our screen shots, just repeat the process as you did above, except you need to select puppetclient as the VM name in step 5.

11 Now that you have deployed your second machine, you can see the two guests in your VMware Workstation window. Yay! We have our two guest machines ready to start our Puppet deployment.

12 Configuring our Puppet Master (puppetserver) Log in to the console using the credentials you defined during the setup wizard. We will launch all commands using the sudo command which will elevate our privileges to launch each action. The first time you use sudo, you will be prompted for your credentials. Further sudo commands in the same session will use those cached credentials. Update the apt repositories with the apt-get utility sudo apt-get update Change the host name using sed (Linux stream editor) sudo sed -i s/ubuntu/puppetserver/g /etc/hostname Set our IP up for the network interface eth0 using nano (a fairly simple Linux editor). Once we edit the info with the format below, using your own IP information, we just type Ctrl-X, then type Y followed by pressing Enter to confirm the file name, save and exit. While I don t personally use nano, the general usage is simple for those just getting started. sudo nano /etc/network/interfaces Add a record to the Hosts file for our server and our client (use your own IP addresses of course) sudo nano /etc/hosts

13 Install Puppet sudo apt-get install -y puppetmaster Stop the puppetmaster service sudo service puppetmaster stop Remove the default certificate sudo rm -r /var/lib/puppet/ssl Reboot the server sudo reboot Log in to the console once the reboot is completed. We will do some tasks after our client is configured. That s it. No, really, that s the end of the server configuration. Next we configure our client machine Configuring our Puppet Agent (puppetclient) Now we log in to the console of our second guest which will become the agent managed machine. We will be performing the following steps: Update the apt repositories with the apt-get utility

14 sudo apt-get update Change the host name using sed (Linux stream editor) sudo sed -i s/ubuntu/puppetclient/g /etc/hostname Set our IP up for the network interface eth0 using nano (a fairly simple Linux editor). Once we edit the info with the format below, using your own IP information, we just type Ctrl-X, then type Y followed by pressing Enter to confirm the file name, save and exit. While I don t personally use nano, the general usage is simple for those just getting started. sudo nano /etc/network/interfaces Reboot to ensure the new IP and hostname take effect sudo reboot Log in to the console again Add a record to the Hosts file for our server and our client (use your own IP addresses of course) sudo nano /etc/hosts

15 Install Puppet sudo apt-get install -y puppet Add the puppetmaster server entry in the puppet.conf file. We will create an [agent] section and put an entry which says server = puppetmaster sudo nano /etc/puppet/puppet.conf Set the puppet agent to start automatically using sed sudo sed -i s/no/yes/g /etc/default/puppet

16 Restart the puppet agent sudo service puppet restart Now are client is fully configured. Let s go back to the puppetserver console and manage the puppet agent request which will have been created by restarting the services on the client. On the puppetserver console we list the pending certificates and then we sign the certificate with the requesting name attached. This is the sequence that we use: sudo puppet cert list sudo puppet cert sign agentname And now we have our Puppet server and Puppet client all ready to go!! We have lots of tasks we can do now, but we start with the basic step of creating our first manifest. Creating your site.pp file On your puppetserver you need to create your first manifest. With future articles we will do lots more than this, but the first step is to get your initial file started to test the running of the manifest against your new puppet client. sudo nano /etc/puppet/manifests/site.pp Add the following content shown in the image and save the file

17 Next we can either wait for the manifest to run at the next interval which we won t do because we are impatient Log into the puppet client console and initiate the puppet agent by restarting the service sudo service puppet restart Now we will run the puppet agent to test the connection sudo puppet agent test Yay! It worked. Let s confirm the file has shown up as we defined it in our site.pp manifest:

18 So now we have successfully completed a few tasks: Installed our puppet server Installed a puppet client Connected the puppet client to the server Created a basic (very, very basic) manifest Run the manifest against our client This may not seem like a big accomplishment for some, but surprisingly there are many administrators who have little or no experience with using Linux systems, and the first few steps, although simple, can be daunting for some. In future posts we will take the next important steps of creating manifest modules, deploying the puppet client to a Microsoft Windows machine, and then getting into more detailed manifest configuration. Puppet Cheat Sheets We will use these for our next post as we start to build some basic manifests for testing out the various components. We can use these to help us dip our toes further into the water of Puppet automation. Puppet Labs Module Cheat Sheet Puppet Labs Core Types Cheat Sheet

19 So read those guides and we will be adding some more flavor to our little Puppet test environment very soon! I hope that this is a helpful guide to get people started on your journey with puppet vexpert 2013 Look who just joined the club!! I have one word to describe the feeling right now: Wow! I am humbled and thankful to VMware, John Troyer, Angelo Luciani and the whole community who have kindly added me to the vexpert list for This is truly an honour for me and I have to say a massive thank you to everyone who has helped me to be a part of this. It s about Community The amazing thing about community is that it transcends many things. Location, job title, experience level, age or any other factor don t come into play. The community of VMware User Groups, OpenStack users, vbrownbag attendees and of many of a growing list of community driven groups continue to be a massive part of what drives information sharing and peer-to-peer education. While I m a relative newbie to blogging within the last couple of years, the acceptance by the community has been incredible. For this reason I hope to encourage many more to join in, have your say and to share your stories.

20 Congratulations to all the new and renewed vexperts! You can go here ( and view the informal 2013 list and reach out to them with a congratulations. Most importantly, you as a reader can support these people and yourself by attending the events, reading the blogs and getting and staying active on Twitter to engage fully with the group. One year ago I learned of the vexpert elections but this year I put my name in the hat and if you haven t already been involved, then this will be the start of your campaign to be a part of the vexpert group for 2014! Let s Keep the Momentum This isn t the end where we celebrate and relax. This is the beginning. I can proudly say that by being lucky enough to be a part of a great community is something that I do everything I can to keep sharing what I m learning with my peers and to bring more and more people into a growing and exciting community. Thank you all for listening, for sharing, and for everything that you have done to inspire me, and the community, to go over and above wherever we can to help each other and to be a part of something great. Chapeau!

21 Toronto VMUG: May 23rd, 2013 Event Recap and Private Cloud Presentation It was a beautiful sunny morning in Toronto and a great day for a VMUG meeting! May 23rd brought the first VMUG meeting of the spring here and the audience showed that they were ready to show some community love today. There were two great vendors here for the session which were Tintri and Veeam, followed by yours truly with my presentation titled Private Cloud Going from Lab to Live. The audience was a great size, Angelo Luciani put together a great day for us and we also had Mike Preston ( in attendance so it was a great opportunity to chat and we had a great lunch afterwards. VMware Horizon Workspace with Mike Bujara Mike from VMware did a great preview of the VMware Horizon Workspace for us. The awesome part of it was that he did the connection tethered from an iphone which tells you the kind of flexibility that this great product suite gives you. I ve been lucky enough to lab the VMware Horizon suite and I can tell you that it is a phenomenal product. Licensing is another beast altogether, but the feature set that is offered with the latest iteration is pretty amazing and you will find that it is a great way to extend your corporate infrastructure to your staff through mobile devices, VPN remote deployments and maybe even full desktop replacement in the office. Pretty cool technology all around. Tintri Storage Presentation Tintri brought the thunder today. One of the first employees at Tintri, Rex flew in from California and he knew how to read the audience well. Right out of the gate the presentation went to real performance management techniques and the myths about IOPS and the effect on overall performance. We don t often get a chance to dive deep with presenters, so this was nice that the audience was able to get some great questions answered and I can safely say that we all learned some great information about storage, flash and I/O performance as a result. Veeam Tales from the Field: Don t let this happen to your VMs The Veeam team did another great job with a

22 presentation about the Veeam Backup and Replication suite and the other great Veeam tools such as Veeam Explorer for SAN Snapshots and Veeam Explorer for Exchange. Even more exciting are the new features that are coming out with V7.0 that is due out around the time of VMworld San Francisco so make sure that you will be very pleased with. Follow along with the announcements as they come out here: Demo time was in order and Mario from Veeam showed us a live session where he was able to restore Exchange objects, Active Directory objects and full servers using backup instances. All of which was done in a matter of minutes. The product performance speaks for itself really, but if you haven t had a chance to see it, you can view the v7 webinars or reach out to the team through the website by clicking on the banner to the right of the page. My Presentation on Private Cloud Going from Lab to Live The goal of this presentation is to summarize various cloud infrastructure deployments, and to concentrate on starting with a cloud labs with the goal of being able to move towards new processes and developing a cloudy way to manage your virtualization environment. The slide deck alone doesn t quite convey the full impact unfortunately, but I hope that the general theme comes through. I hope to put my presentation together with a full audio overlay to fully deliver the content as it was meant. If you have any questions or comments on the presentation or content, you can find me on or to eric at discoposse dot com. Thank you very much to Angelo Luciani, Mike Preston, the VMUG community and to everyone who helps to bring these events together. VMware Hybrid Cloud Launch Day Why this is important, and What is New So today is a big announcement day for VMware. Not a total surprise of course, because they have teased this offering for a while, and they have actually had the system in customer beta testing for a while. I know, because I was one of the lucky ones who was able to get a first crack at the system If you ve read what I wrote back then (Article: vcloud Hybrid Cloud) you have probably had some interest in what I was after too; the opportunity to add VMware supported services for on-demand cloud usage to ease the transition to cloud infrastructure. Ready for Prime Time Finally Admittedly, I found the original beta to be a little light duty. I have had two servers running in that environment with a variety of configurations. I even have my Puppet environment hosted there now as a proof of concept deployment for some projects I have that are brewing up.

23 Today is a different day because of that testing and the continuous feedback that has poured back into the VMware Hybrid Cloud group. They have had their hands full I m sure with support calls, and the growing reliability of the service was evident. But today, as I ve said, is a different day. Today, this is a real system. What is Next for the vcloud Hybrid Cloud One word: Growth. This is the beginning of something great in that it adds competitiveness to the market, and it allows for a logical first step for many organizations to use public cloud infrastructure for their production workloads. What was interesting is how many conversations, some of them very animated, were sparked up over the announcement. The Twitterverse was alight with speculation that this is meant to be an AWS killer, or an OpenStack killer. In my opinion, it is neither of those but it is as important as the ios, BlackBerry, Android OS battle in the mobile space. Dedicated or Virtual Private (multi-tenant) The cool feature of this is is that there are two service offerings. The Dedicated vcloud environment is a physically isolated environment which you retain complete control over and can easily link to your on-premise vcloud using the vcloud Connector. If you want to use the on-demand capability of the Virtual Private cloud infrastructure, those resources are also available which are logically isolated from other environments using the well tested vcloud Networking and Security suite. image courtesy of VMware (click for source page) Partnerships The Real Power of the Cloud It doesn t have to go much further than the announcement that the amazing automation engine Puppet is fully integrated into the environment, so you can dive right in with this popular configuration management tool and even if you aren t already dipping your toes into the Puppet waters, I can tell you that the water is beautiful and it is a quick transition.

24 Even if you don t interact with it, the truth is that Puppet is now part of the fabric of the vcloud ecosystem which is the result of some amazing work by the Cloud Services Team and the symbolic investment that VMware has made with Puppet Labs. Some have proposed that this is a shot across the bow of partner cloud providers, but I think that this is really an opportunity to widen the net and gain a strong adoption of the vcloud products in public, private and hybrid deployments across the board. Comfort Food in the Datacenter We like this announcement in the same way that we smell our grandma s apple pie cooking, or the taste of your favorite curl up on the couch meal. This is about comfort. We know that this technology is working well for us today in our on-premise deployments, so this is the chance to confidently take the next step and take advantage of a growing wave in technology. I really see this as a way to take those who we traditionally see in the laggards category, and move them much closer to the peak of the technology adoption curve. Bravo VMware, and I can t wait to watch this come together. Production general availability in North America datacenters is scheduled for Q and early access will be available in June. View the VMware vcloud Hybrid site here: And most importantly, here is the pricing info: Here is the announcement from Puppet Labs: blog&utm_medium=socnet&utm_source=twitter&utm_content=vchs_interview_blog

Puppet 101 Basic installation for master and agent machines on Ubuntu with VMware Workstation

Puppet 101 Basic installation for master and agent machines on Ubuntu with VMware Workstation Puppet 101 Basic installation for master and agent machines on Ubuntu 12.04 with VMware Workstation You don t have to go far to hear the word Puppet these days. Configuration management isn t just a new

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

Rancher Part 4: Using the Catalog Example with GlusterFS

Rancher Part 4: Using the Catalog Example with GlusterFS Rancher Part 4: Using the Catalog Example with GlusterFS As promised, it s time to get to the catalog goodness. Since GlusterFS hasn t gotten enough love from me lately, it s time to bring that into the

More information

Media-Ready Network Transcript

Media-Ready Network Transcript Media-Ready Network Transcript Hello and welcome to this Cisco on Cisco Seminar. I m Bob Scarbrough, Cisco IT manager on the Cisco on Cisco team. With me today are Sheila Jordan, Vice President of the

More information

Apple Device Management

Apple Device Management A COMPREHENSIVE GUIDE Apple Device Management FOR SMALL AND MEDIUM BUSINESSES With a renewed focus on mobile devices in the work environment, Apple has become the device of choice in small and medium businesses.

More information

Setting up Docker Datacenter on VMware Fusion

Setting up Docker Datacenter on VMware Fusion Setting up Docker Datacenter on VMware Fusion With the release of Docker Datacenter, it seemed like a good idea to kick the tires on this new system to get a handle on what the experience is like installing,

More information

Copyright All rights reserved worldwide.

Copyright All rights reserved worldwide. Copyright All rights reserved worldwide. YOUR RIGHTS: This book is restricted to your personal use only. It does not come with any other rights. LEGAL DISCLAIMER: This book is protected by international

More information

BUSTED! 5 COMMON MYTHS OF MODERN INFRASTRUCTURE. These Common Misconceptions Could Be Holding You Back

BUSTED! 5 COMMON MYTHS OF MODERN INFRASTRUCTURE. These Common Misconceptions Could Be Holding You Back BUSTED! 5 COMMON MYTHS OF MODERN INFRASTRUCTURE These Common Misconceptions Could Be Holding You Back 2 IT Is Facing a New Set of Challenges As technology continues to evolve, IT must adjust to changing

More information

This video is part of the Microsoft Virtual Academy.

This video is part of the Microsoft Virtual Academy. This video is part of the Microsoft Virtual Academy. 1 In this session we re going to talk about building for the private cloud using the Microsoft deployment toolkit 2012, my name s Mike Niehaus, I m

More information

EPISODE 23: HOW TO GET STARTED WITH MAILCHIMP

EPISODE 23: HOW TO GET STARTED WITH MAILCHIMP EPISODE 23: HOW TO GET STARTED WITH MAILCHIMP! 1 of! 26 HOW TO GET STARTED WITH MAILCHIMP Want to play a fun game? Every time you hear the phrase email list take a drink. You ll be passed out in no time.

More information

WEBINARS FOR PROFIT. Contents

WEBINARS FOR PROFIT. Contents Contents Introduction:... 3 Putting Your Presentation Together... 5 The Back-End Offer They Can t Refuse... 8 Pick One Target Audience per Webinar... 10 Automate Your Webinar Sessions... 12 Introduction:

More information

GETTING TO KNOW THE WEBINAR

GETTING TO KNOW THE WEBINAR WHAT IS A WEBINAR? GETTING TO KNOW THE WEBINAR When you hear the word webinar, what comes to mind? If you re picturing a clunky-looking online slideshow with a speaker calling in on a static-filled phone

More information

Six steps to control the uncontrollable

Six steps to control the uncontrollable Six steps to control the uncontrollable Learn how to use Microsoft Enterprise Mobility Suite to protect cloud apps, manage devices, and guard against advanced threats today Introduction Employees today

More information

Installing and Using Docker Toolbox for Mac OSX and Windows

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

More information

Repurposing Your Podcast. 3 Places Your Podcast Must Be To Maximize Your Reach (And How To Use Each Effectively)

Repurposing Your Podcast. 3 Places Your Podcast Must Be To Maximize Your Reach (And How To Use Each Effectively) Repurposing Your Podcast 3 Places Your Podcast Must Be To Maximize Your Reach (And How To Use Each Effectively) What You ll Learn What 3 Channels (Besides itunes and Stitcher) Your Podcast Should Be On

More information

OpenStack Lab on VMware Workstation Setting up the All-In-One VM

OpenStack Lab on VMware Workstation Setting up the All-In-One VM OpenStack Lab on VMware Workstation Setting up the All-In-One VM In our first post, we got to the start of the OpenStack install using the Rackspace Private Cloud ISO (Alamo). Because we had to set up

More information

1. You re boring your audience

1. You re boring your audience 1. You re boring your audience OK, so you ve convinced your users to visit your landing page. Or even better they ve signed up for your mailing list. That s great! Now that you have their attention, the

More information

How to Host WebEx Meetings

How to Host WebEx Meetings How to Host WebEx Meetings Instructions for ConnSCU Faculty and Staff using ConnSCU WebEx Table of Contents How Can Faculty and Staff Use WebEx?... 3 Inviting Meeting Participants... 3 Tips before Starting

More information

WEBINARS INSPIRING A SAFE AND SECURE CYBER WORLD Media Kit - North America

WEBINARS INSPIRING A SAFE AND SECURE CYBER WORLD Media Kit - North America INSPIRING A SAFE AND SECURE CYBER WORLD 2019 Media Kit - North America THE (ISC) 2 (ISC) 2 Webinars are a proven method of reaching high-level IT security executives in an intimate setting. Members advance

More information

Product Backlog Document Template and Example

Product Backlog Document Template and Example Product Backlog Document Template and Example Introduction 1. Client Information (Name(s), Business, Location, contact information) 2. Team Information Team Member Names (contact information) 3. Project

More information

VMworld 2015 Track Names and Descriptions

VMworld 2015 Track Names and Descriptions VMworld 2015 Track Names and Descriptions Software- Defined Data Center Software- Defined Data Center General Pioneered by VMware and recognized as groundbreaking by the industry and analysts, the VMware

More information

Business Hacks to grow your list with Social Media Marketing

Business Hacks to grow your list with Social Media Marketing Business Hacks to grow your list with Social Media Marketing Social media marketing enables you to attract more attention when you create and share content. Social media platforms are great places to engage

More information

Switch to Parallels Remote Application Server and Save 60% Compared to Citrix XenApp

Switch to Parallels Remote Application Server and Save 60% Compared to Citrix XenApp Switch to Parallels Remote Application Server and Save 60% Compared to Citrix XenApp White Paper Parallels Remote Application Server 2017 Table of Contents Executive Summary... 3 Introduction... 4 Who

More information

The Best Event Marketing Plan. Ever.

The Best Event  Marketing Plan. Ever. The Best Event Email Marketing Plan. Ever. Introduction: You ve created a kick-ass, awesome event at an amazing location with a beautiful event page - and all within budget! But now what? Your biggest

More information

Webinars INSPIRING A SAFE AND SECURE CYBER WORLD Media Kit - North America

Webinars INSPIRING A SAFE AND SECURE CYBER WORLD Media Kit - North America Webinars INSPIRING A SAFE AND SECURE CYBER WORLD 2018 Media Kit - North America 1 THE (ISC) 2 SECURE WEBINARS (ISC) 2 Secure Webinars are a proven method of reaching high-level IT security executives in

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

Cisco Cloud Services Router 1000V and Amazon Web Services CASE STUDY

Cisco Cloud Services Router 1000V and Amazon Web Services CASE STUDY Cisco Cloud Services Router 1000V and Amazon Web Services CASE STUDY CASE STUDY ADOBE 2 About Adobe Adobe Systems provides digital media and marketing solutions to customers around the world including

More information

facebook a guide to social networking for massage therapists

facebook a guide to social networking for massage therapists facebook a guide to social networking for massage therapists table of contents 2 3 5 6 7 9 10 13 15 get the facts first the importance of social media, facebook and the difference between different facebook

More information

INTRODUCTION. In this guide, I m going to walk you through the most effective strategies for growing an list in 2016.

INTRODUCTION. In this guide, I m going to walk you through the most effective strategies for growing an  list in 2016. - Bryan Harris - INTRODUCTION In this guide, I m going to walk you through the most effective strategies for growing an email list in 2016. A lot of things are taught online that, quite honestly, just

More information

Move Up to an OpenStack Private Cloud and Lose the Vendor Lock-in

Move Up to an OpenStack Private Cloud and Lose the Vendor Lock-in Move Up to an OpenStack Private Cloud and Lose the Vendor Lock-in Peace, commerce and honest friendship with all nations; entangling alliances with none. -Thomas Jefferson Introduction In business and

More information

VMworld 2015 Track Names and Descriptions

VMworld 2015 Track Names and Descriptions Software- Defined Data Center Software- Defined Data Center General VMworld 2015 Track Names and Descriptions Pioneered by VMware and recognized as groundbreaking by the industry and analysts, the VMware

More information

IT & DATA SECURITY BREACH PREVENTION

IT & DATA SECURITY BREACH PREVENTION IT & DATA SECURITY BREACH PREVENTION A PRACTICAL GUIDE Part 1: Reducing Employee and Application Risks CONTENTS EMPLOYEES: IT security hygiene best practice APPLICATIONS: Make patching a priority AS CORPORATE

More information

Lab 1: Setup 12:00 PM, Sep 10, 2017

Lab 1: Setup 12:00 PM, Sep 10, 2017 CS17 Integrated Introduction to Computer Science Hughes Lab 1: Setup 12:00 PM, Sep 10, 2017 Contents 1 Your friendly lab TAs 1 2 Pair programming 1 3 Welcome to lab 2 4 The file system 2 5 Intro to terminal

More information

SharePoint Virtualization and the Benefits of Modern Data Protection with Veeam Explorer for Microsoft SharePoint

SharePoint Virtualization and the Benefits of Modern Data Protection with Veeam Explorer for Microsoft SharePoint SharePoint Virtualization and the Benefits of Modern Data Protection with Veeam Explorer for Microsoft SharePoint Chris Henley Microsoft Certified Professional, MCSE, MCSA and Veeam Product Strategy Specialist

More information

Not Your Grandma s

Not Your Grandma s New Message To You CC Friends From Not Your Grandma s Email The Transformation of Email in a Mobile World Your Email Guide, Built for the Mobile Era Are you emailing like it s 1999? Using email as a standalone

More information

9 quick wins every membership organisation should adopt

9 quick wins every membership organisation should adopt 9 quick wins every membership organisation should adopt Working in a smaller membership organisation we know that email marketing isn t your only focus. You ve got other things going on and resource is

More information

E-Guide WHAT WINDOWS 10 ADOPTION MEANS FOR IT

E-Guide WHAT WINDOWS 10 ADOPTION MEANS FOR IT E-Guide WHAT WINDOWS 10 ADOPTION MEANS FOR IT E nterprise adoption of Windows 10 isn t likely to follow the same pattern as for Windows 7, and that s a good thing, writes columnist Brian Madden. And even

More information

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA f Contacting Leostream Leostream Corporation http://www.leostream.com 271 Waverley Oaks Rd. Telephone: +1 781 890 2019 Suite 206 Waltham, MA 02452 USA To submit an enhancement request, email features@leostream.com.

More information

NOW! Manage ALL workloads virtual, physical and cloud from a single console!

NOW! Manage ALL workloads virtual, physical and cloud from a single console! NOW! Manage ALL workloads virtual, physical and cloud from a single console! Veeam Availability Suite 9.5 Update 3 Veeam Agent for Microsoft Windows 2.1 Veeam Agent for Linux v2 Rick Vanover Director of

More information

BusinessCompute Good morning or good afternoon, depending on where you are, and welcome to today s live channel chat on Business Compute Forum.

BusinessCompute Good morning or good afternoon, depending on where you are, and welcome to today s live channel chat on Business Compute Forum. BusinessCompute Good morning or good afternoon, depending on where you are, and welcome to today s live channel chat on Business Compute Forum. BusinessCompute I m Peter Krass, the BCF site s editor. I

More information

Good afternoon, everyone. Thanks for joining us today. My name is Paloma Costa and I m the Program Manager of Outreach for the Rural Health Care

Good afternoon, everyone. Thanks for joining us today. My name is Paloma Costa and I m the Program Manager of Outreach for the Rural Health Care Good afternoon, everyone. Thanks for joining us today. My name is Paloma Costa and I m the Program Manager of Outreach for the Rural Health Care program. And I m joined by Carolyn McCornac, also Program

More information

Service provider GTM strategy session: New revenue opportunities with Veeam

Service provider GTM strategy session: New revenue opportunities with Veeam Service provider GTM strategy session: New revenue opportunities with Veeam Jordan Jacobs Senior Director, Global Cloud Solutions Anthony Spiteri Global Technologist, Product Strategy Leah Troscianecki

More information

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on a Virtual Machine

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on a Virtual Machine IT 341 Introduction to System Administration Project I Installing Ubuntu Server on a Virtual Machine Here we create a new virtual machine and install Ubuntu 16.04 LTS Server on it. In this instance, we

More information

MAKING MONEY ON OPENSTACK. Boris

MAKING MONEY ON OPENSTACK. Boris MAKING MONEY ON OPENSTACK Boris Renski b@renski.com @zer0tweets China and Russia are alike! 2 We love gymnastics! 3 We love chess! 4 and we love money! 5 6 When most people think of OpenSt ack, they imagine

More information

VMworld 2018 Call for Papers

VMworld 2018 Call for Papers VMworld 2018 Call for Papers Submission Template Session Information *Which VMworld event are you submitting for? - US - Both events - Europe *Session Title A compelling title that clearly and concisely

More information

Backup and recovery of vsphere VCSA and Platform Services Controllers

Backup and recovery of vsphere VCSA and Platform Services Controllers Backup and recovery of vsphere VCSA and Platform Services Controllers Michael White Global Technical Evangelist, Veeam Contents Introduction... 3 Audience...............................................................................................................3

More information

3.30pm. A sneak peek at Veeam 2018 releases Veeam for VMware Cloud on AWS technical deep dive Veeam Availability Console Update pm. 2.

3.30pm. A sneak peek at Veeam 2018 releases Veeam for VMware Cloud on AWS technical deep dive Veeam Availability Console Update pm. 2. 1.30pm 2.00pm 2.30pm 3.00pm 3.30pm 4.00pm 4.30pm 5.00pm Business Breakout Veeam Backup for Microsoft Office 365 - It's Your Data! Management products: The OTHER side of Veeam Panel: Business Compliance

More information

Reasons Why Other Companies Webinars are Better Than Yours: Real-life webinar examples and tips from ReadyTalk customers

Reasons Why Other Companies Webinars are Better Than Yours: Real-life webinar examples and tips from ReadyTalk customers 6 Reasons Why Other Companies Webinars are Better Than Yours: Real-life webinar examples and tips from ReadyTalk customers As a marketer, you ve probably tried a number of different lead generation tactics

More information

Hello, my name is Cara Daly, I am the Product Marketing Manager for Polycom Video Content Management Solutions. Today we will be going over the

Hello, my name is Cara Daly, I am the Product Marketing Manager for Polycom Video Content Management Solutions. Today we will be going over the Page 1 of 17 Hello, my name is Cara Daly, I am the Product Marketing Manager for Polycom Video Content Management Solutions. Today we will be going over the RealPresence Media Manager Version 6.5 Launch

More information

How to Read AWStats. Why it s important to know your stats

How to Read AWStats. Why it s important to know your stats How to Read AWStats Welcome to the world of owning a website. One of the things that both newbie and even old time website owners get overwhelmed by is their analytics and understanding the data. One of

More information

Weebly 101. Make an Affordable, Professional Website in Less than an Hour

Weebly 101. Make an Affordable, Professional Website in Less than an Hour Weebly 101 Make an Affordable, Professional Website in Less than an Hour Text Copyright STARTUP UNIVERSITY All Rights Reserved No part of this document or the related files may be reproduced or transmitted

More information

How to Secure SSH with Google Two-Factor Authentication

How to Secure SSH with Google Two-Factor Authentication How to Secure SSH with Google Two-Factor Authentication WELL, SINCE IT IS QUITE COMPLEX TO SET UP, WE VE DECIDED TO DEDICATE A WHOLE BLOG TO THAT PARTICULAR STEP! A few weeks ago we took a look at how

More information

ONLINE EVALUATION FOR: Company Name

ONLINE EVALUATION FOR: Company Name ONLINE EVALUATION FOR: Company Name Address Phone URL media advertising design P.O. Box 2430 Issaquah, WA 98027 (800) 597-1686 platypuslocal.com SUMMARY A Thank You From Platypus: Thank you for purchasing

More information

9 myths about moving to the cloud. What small and medium-size businesses need to know about moving to Microsoft Office 365

9 myths about moving to the cloud. What small and medium-size businesses need to know about moving to Microsoft Office 365 9 myths about moving to the cloud What small and medium-size businesses need to know about moving to Microsoft Office 365 Most companies need the agility and cost savings that come with switching to Microsoft

More information

VMworld 2013 Overview

VMworld 2013 Overview VMworld 2013 Overview Dennis Bray ENS, Inc. 2011 VMware Inc. All rights reserved VMworld 2013: Attendance August 25: Hands on Labs & Welcome Reception August 26 9: Conference 22,500 attendees October 15

More information

Why You Should Not Use Arch

Why You Should Not Use Arch Why You Should Not Use Arch A new users guide to highly personalized, low maintenance operating system. Artur Frącek CC BY-NC-ND 4.0 1 Intro Arch is a very good Linux distribution so it is not a surprise

More information

SUCCESS STORY THE POLYCLINIC THE POLYCLINIC SPEEDS UP ITS VDI ENVIRONMENT WITH NVIDIA GRID

SUCCESS STORY THE POLYCLINIC THE POLYCLINIC SPEEDS UP ITS VDI ENVIRONMENT WITH NVIDIA GRID THE POLYCLINIC SPEEDS UP ITS VDI ENVIRONMENT WITH NVIDIA GRID Updated VDI with NVIDIA GRID wins over staff and increases user density across the organization. was founded in 1917 by a handful of doctors.

More information

Automated Security for the Real-time Enterprise with VMware NSX and Trend Micro Deep Security Chris Van Den Abbeele, Global Solution Architect, Trend

Automated Security for the Real-time Enterprise with VMware NSX and Trend Micro Deep Security Chris Van Den Abbeele, Global Solution Architect, Trend SAI3314BES Automated Security for the Real-time Enterprise with VMware NSX and Trend Micro Deep Security Chris Van Den Abbeele, Global Solution Architect, Trend Micro #VMworld #SAI3314BES Automated Security

More information

Lesson 9 Transcript: Backup and Recovery

Lesson 9 Transcript: Backup and Recovery Lesson 9 Transcript: Backup and Recovery Slide 1: Cover Welcome to lesson 9 of the DB2 on Campus Lecture Series. We are going to talk in this presentation about database logging and backup and recovery.

More information

DOWNLOAD PDF SQL SERVER 2012 STEP BY STEP

DOWNLOAD PDF SQL SERVER 2012 STEP BY STEP Chapter 1 : Microsoft SQL Server Step by Step - PDF Free Download - Fox ebook Your hands-on, step-by-step guide to building applications with Microsoft SQL Server Teach yourself the programming fundamentals

More information

5 Reasons to Choose Parallels RAS Over Citrix Solutions

5 Reasons to Choose Parallels RAS Over Citrix Solutions White Paper Parallels Remote Application Server 5 Reasons to Choose Parallels RAS Over Citrix Solutions 5 Reasons to Choose RAS Over Citrix Solutions 01 Table of Contents Introduction...3 Parallels Helps

More information

Learn a lot beyond the conventional VLOOKUP

Learn a lot beyond the conventional VLOOKUP The Ultimate Guide Learn a lot beyond the conventional VLOOKUP Hey there, Howdy? =IF ( you are first timer at Goodly, Then a very warm welcome here, Else for all my regular folks you know I love you :D

More information

DEMAND INCREASE GROWTH

DEMAND INCREASE GROWTH WHITE PAPER Accelerate. Intelligence. How marketers can use webinars to create demand and fuel the sales pipeline WEBINARS SALES DEMAND INCREASE GROWTH Accelerate. Intelligence. How marketers can use webinars

More information

Unlocking Office 365 without a password. How to Secure Access to Your Business Information in the Cloud without needing to remember another password.

Unlocking Office 365 without a password. How to Secure Access to Your Business Information in the Cloud without needing to remember another password. Unlocking Office 365 without a password How to Secure Access to Your Business Information in the Cloud without needing to remember another password. Introduction It is highly likely that if you have downloaded

More information

Title: Episode 11 - Walking through the Rapid Business Warehouse at TOMS Shoes (Duration: 18:10)

Title: Episode 11 - Walking through the Rapid Business Warehouse at TOMS Shoes (Duration: 18:10) SAP HANA EFFECT Title: Episode 11 - Walking through the Rapid Business Warehouse at (Duration: 18:10) Publish Date: April 6, 2015 Description: Rita Lefler walks us through how has revolutionized their

More information

QLIK VIRTUAL EVENT. qlik.com

QLIK VIRTUAL EVENT. qlik.com QLIK VIRTUAL EVENT qlik.com VIRTUAL EVENT SYSTEM REQUIREMENTS & QUICK START Operating System / Browser Combinations Windows 7 or 8 with IE8+ or the latest version of Firefox or Chrome Mac OS 10.7 with

More information

Viewer 2 Beta Frequently Asked Questions

Viewer 2 Beta Frequently Asked Questions Viewer 2 Beta GENERAL Why did you create Viewer 2 and who is the primary audience for this viewer? Viewer 1.23 is the culmination of over ten years of work and it has helped to create the Second Life that

More information

Cloud Computing: Making the Right Choice for Your Organization

Cloud Computing: Making the Right Choice for Your Organization Cloud Computing: Making the Right Choice for Your Organization A decade ago, cloud computing was on the leading edge. Now, 95 percent of businesses use cloud technology, and Gartner says that by 2020,

More information

The Data Protection Rule and Hybrid Cloud Backup

The Data Protection Rule and Hybrid Cloud Backup The 3-2-1 Data Protection Rule and Hybrid Cloud Backup IT teams are under extreme pressure to improve backup, disaster recovery and data protection to eliminate downtime and facilitate digital transformation.

More information

Skype for Business Users: 18 Things to Know about Microsoft Teams for 2018

Skype for Business Users: 18 Things to Know about Microsoft Teams for 2018 Skype for Business Users: 18 Things to Know about Microsoft Teams for 2018 If you have made significant investments in or are in the process of evaluating/deploying Skype for Business, what is your path

More information

to know about Microsoft Teams

to know about Microsoft Teams to know about Microsoft Teams If you have made significant investments in or are in the process of evaluating/deploying Skype for Business, what is your path forward in terms of migrating to Microsoft

More information

Availability and the Always-on Enterprise: Why Backup is Dead

Availability and the Always-on Enterprise: Why Backup is Dead Availability and the Always-on Enterprise: Why Backup is Dead Backups certainly fit the bill at one time, but data center needs have evolved and expanded. By Nick Cavalancia Every business has experienced

More information

But the foundation of marketing success is the quality and size of your permission-based list.

But the foundation of  marketing success is the quality and size of your permission-based  list. Introduction Email marketing can be profitable for any business, no matter what kind of product or service you offer. But the foundation of email marketing success is the quality and size of your permission-based

More information

I'm Andy Glover and this is the Java Technical Series of. the developerworks podcasts. My guest is Brian Jakovich. He is the

I'm Andy Glover and this is the Java Technical Series of. the developerworks podcasts. My guest is Brian Jakovich. He is the I'm Andy Glover and this is the Java Technical Series of the developerworks podcasts. My guest is Brian Jakovich. He is the director of Elastic Operations for Stelligent. He and I are going to talk about

More information

2016 All Rights Reserved

2016 All Rights Reserved 2016 All Rights Reserved Table of Contents Chapter 1: The Truth About Safelists What is a Safelist Safelist myths busted Chapter 2: Getting Started What to look for before you join a Safelist Best Safelists

More information

RAIFFEISENBANK BULGARIA

RAIFFEISENBANK BULGARIA RAIFFEISENBANK BULGARIA IT thought leader chooses EMC XtremIO and VMware for groundbreaking VDI project OVERVIEW ESSENTIALS Industry Financial services Company Size Over 3,000 employees, assets of approximately

More information

Office 365 Adoption eguide

Office 365 Adoption eguide Office 365 Adoption eguide Identity and Mobility Challenges Okta Inc. I 301 Brannan Street, Suite 300 I San Francisco CA, 94107 info@okta.com I 1-888-722-7871 Mind the Identity Gap Executive Summary Microsoft

More information

CLIENT ONBOARDING PLAN & SCRIPT

CLIENT ONBOARDING PLAN & SCRIPT CLIENT ONBOARDING PLAN & SCRIPT FIRST STEPS Receive Order form from Sales Representative. This may come in the form of a BPQ from client Ensure the client has an account in Reputation Management and in

More information

case study Business Profile The Challenge Company... emix Size... SMB Industry... Healthcare Cloud Application... Production Location...

case study Business Profile The Challenge Company... emix Size... SMB Industry... Healthcare Cloud Application... Production Location... As the healthcare industry continues to make strides in its adoption of new technologies, San Diego-based emix is at the forefront of the revolution. Using iland s cloud platform the company is keeping

More information

Drive 8x More Web Site Visits with

Drive 8x More Web Site Visits with Drive 8x More Web Site Visits with How to make the Internet browser, your most powerful marketing communication tool the secrets of interactive browser themes!""#$"%"&'()#*'+"#! The Huffington Post s 8x

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme NET3282BE The NSX Practical Path Brian Lazear, Sr. Director, NSX Product Management Brian Muita, CTO, Node Africa #VMworld #NET3282BE Disclaimer This presentation may contain product features that are

More information

Table of Contents DevOps Administrators

Table of Contents DevOps Administrators DevOps Administrators Table of Contents DevOps Administrators Overview for DevOps Admins Managing Images, Projects, Users Configure a Registry Create Users Assign the Administrator Role Create a Project

More information

CLIENT ONBOARDING PLAN & SCRIPT

CLIENT ONBOARDING PLAN & SCRIPT CLIENT ONBOARDING PLAN & SCRIPT FIRST STEPS Receive Order form from Sales Representative. This may come in the form of a BPQ from client Ensure the client has an account in Reputation Management and in

More information

CIO 24/7 Podcast: Tapping into Accenture s rich content with a new search capability

CIO 24/7 Podcast: Tapping into Accenture s rich content with a new search capability CIO 24/7 Podcast: Tapping into Accenture s rich content with a new search capability CIO 24/7 Podcast: Tapping into Accenture s rich content with a new search capability Featuring Accenture managing directors

More information

Getting started with social media and comping

Getting started with social media and comping Getting started with social media and comping Promotors are taking a leap further into the digital age, and we are finding that more and more competitions are migrating to Facebook and Twitter. If you

More information

Puppet on the AWS Cloud

Puppet on the AWS Cloud Puppet on the AWS Cloud Quick Start Reference Deployment AWS Quick Start Reference Team March 2016 This guide is also available in HTML format at http://docs.aws.amazon.com/quickstart/latest/puppet/. Contents

More information

Digital Marketing Manager, Marketing Manager, Agency Owner. Bachelors in Marketing, Advertising, Communications, or equivalent experience

Digital Marketing Manager, Marketing Manager, Agency Owner. Bachelors in Marketing, Advertising, Communications, or equivalent experience Persona name Amanda Industry, geographic or other segments B2B Roles Digital Marketing Manager, Marketing Manager, Agency Owner Reports to VP Marketing or Agency Owner Education Bachelors in Marketing,

More information

SECURITY AND DATA REDUNDANCY. A White Paper

SECURITY AND DATA REDUNDANCY. A White Paper SECURITY AND DATA REDUNDANCY A White Paper Security and Data Redundancy Whitepaper 2 At MyCase, Security is Our Top Priority. Here at MyCase, we understand how important it is to keep our customer s data

More information

Accessing CharityMaster data from another location

Accessing CharityMaster data from another location Accessing CharityMaster data from another location When all of your computers are on the same Local Area Network (LAN), you can place the back end files (including your data and the Word templates) onto

More information

Installing and Configuring Citrix XenApp 6.5 (Part 1)

Installing and Configuring Citrix XenApp 6.5 (Part 1) Installing and Configuring Citrix XenApp 6.5 (Part 1) Introduction The first part of this series describes the installation steps of the first server (which will create the XenApp environment) and the

More information

TRUST YOUR WEBSITE TO THE EXPERTS PROFESSIONALLY DESIGNED AND FOUND EVERYWHERE THAT MATTERS

TRUST YOUR WEBSITE TO THE EXPERTS PROFESSIONALLY DESIGNED AND FOUND EVERYWHERE THAT MATTERS TRUST YOUR WEBSITE TO THE EXPERTS PROFESSIONALLY DESIGNED AND FOUND EVERYWHERE THAT MATTERS CONTENTS Trust HQBytes with your website 04 The HQBytes difference 10 Designed by professionals 05 Our websites

More information

Cameron Stewart Technical Publications Product Manager, xmatters. MadCap Flare native XML singlesource content authoring software

Cameron Stewart Technical Publications Product Manager, xmatters. MadCap Flare native XML singlesource content authoring software San Ramon, CA INDUSTRY Communications Software When we experimented with the features in our trial version of MadCap Flare, it became strikingly obvious that it was the product we needed. You could really

More information

Veeam demonstrates its ambitions and capabilities

Veeam demonstrates its ambitions and capabilities Veeam demonstrates its ambitions and capabilities Publication Date: 14 Jul 2016 Product code: IT0022-000730 Roy Illsley Ovum view Summary The market for data protection and availability is undergoing a

More information

VIDEO 1: WHY ARE INBOUND WEBSITES IMPORTANT?

VIDEO 1: WHY ARE INBOUND WEBSITES IMPORTANT? VIDEO 1: WHY ARE INBOUND WEBSITES IMPORTANT? Hi there! I m Angela with HubSpot Academy. In this class, we will be discussing how to use website pages as a part of your inbound marketing strategy. Think

More information

If you have any questions, check the resources section or me at All comments should be directed to

If you have any questions, check the resources section or  me at All comments should be directed to Welcome to Chatroll! Contents Chatroll Introduction... 2 Chat on our website... 3 Chat and your Profile... 3 Moderating the Chat... 5 Basic Moderation: the chat window, managing chatters... 5 Advanced

More information

A Step by Step Guide to Postcard Marketing Success

A Step by Step Guide to Postcard Marketing Success A Step by Step Guide to Postcard Marketing Success Table of Contents Why VerticalResponse?...3 Why Postcards?...4 So why use postcards in this modern era?...4 Quickstart Guide...6 Step 1: Setup Your Account...8

More information

Hyper-v Install Virtual Guest Services Greyed Out

Hyper-v Install Virtual Guest Services Greyed Out Hyper-v Install Virtual Guest Services Greyed Out You can give a virtual machine access to a computer's local resources, like a removable To make this happen, turn on enhanced session mode on the Hyper-V

More information

Introducing Thrive - The Ultimate In WordPress Blog Design & Growth

Introducing Thrive - The Ultimate In WordPress Blog Design & Growth Introducing Thrive - The Ultimate In WordPress Blog Design & Growth Module 1: Download 2 Okay, I know. The title of this download seems super selly. I have to apologize for that, but never before have

More information

Meet our Example Buyer Persona Adele Revella, CEO

Meet our Example Buyer Persona Adele Revella, CEO Meet our Example Buyer Persona Adele Revella, CEO 685 SPRING STREET, NO. 200 FRIDAY HARBOR, WA 98250 W WW.BUYERPERSONA.COM You need to hear your buyer s story Take me back to the day when you first started

More information

(TBD GB/hour) was validated by ESG Lab

(TBD GB/hour) was validated by ESG Lab (TBD GB/hour) was validated by ESG Lab Enterprise Strategy Group Getting to the bigger truth. ESG Lab Review Protecting Virtual Environments with Spectrum Protect Plus from IBM Date: November 2017 Author:

More information