Wiley 978-0-470-89079-0 Datasheet

Browse online or download Datasheet for Software manuals Wiley 978-0-470-89079-0. Wiley VMware vSphere PowerCLI Reference: Automating vSphere Administration User Manual

  • Download
  • Add to my manuals
  • Print
  • Page
    / 34
  • Table of contents
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 0
PART I
Install, Configure,
and Manage
the vSphere
Environment
CHAPTER 1: AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATION
CHAPTER 2: AUTOMATING VSPHERE HYPERVISOR DEPLOYMENT
AND CONFIGURATION
CHAPTER 3: AUTOMATING STORAGE AND NETWORKING
CHAPTER 4: USING ADVANCED VSPHERE FEATURES
890790c01.indd 1890790c01.indd 1 3/3/11 10:22:14 AM3/3/11 10:22:14 AM
COPYRIGHTED MATERIAL
Page view 0
1 2 3 4 5 6 ... 33 34

Summary of Contents

Page 1 - Environment

PART IInstall, Configure, and Manage the vSphere EnvironmentCHAPTER 1: AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATION CHAPTER 2: AUTOMATIN

Page 2

10 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATION.EXAMPLE 1 PS> Import-Folders -FolderType “Blue” -DC “DC01” ` -Filen

Page 3 - CHAPTER 1

SET UP YOUR VCENTER SERVER FOLDER STRUCTURE 11Install, Con gure, and Manage the vSphere EnvironmentPART IExporting a Folder StructureBoth yellow a

Page 4 - CHAPTER 1

12 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATIONFunction Export-Folders { <#.SYNOPSIS Creates a csv file of folders in v

Page 5 - NO MAGIC WANDS

SET UP YOUR VCENTER SERVER FOLDER STRUCTURE 13Install, Con gure, and Manage the vSphere EnvironmentPART I get-folder | Get-Folderpath $Report

Page 6 - 6 CHAPTER 1

14 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATION }}Export-Folders “Blue” “DC01” “C:\BlueFolders.csv”Export-VMLocation “DC01”

Page 7

DEFINE USERS AND THEIR PRIVILEGES 15Install, Con gure, and Manage the vSphere EnvironmentPART I ) Process { $Report = @() $Report = import-c

Page 8 - 8 CHAPTER 1

16 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATIONFIGURE 1.2 vCenter Server PrivilegesRoles are listed herePrivileges are list

Page 9

DEFINE USERS AND THEIR PRIVILEGES 17Install, Con gure, and Manage the vSphere EnvironmentPART ICapacity planning Discover and convert phys

Page 10 - 10 CHAPTER 1

18 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATIONYou can view which groups (collections of privileges) are available by using

Page 11 - Exporting a Folder Structure

DEFINE USERS AND THEIR PRIVILEGES 19Install, Con gure, and Manage the vSphere EnvironmentPART IManage Baseline Manage baselinesUp

Page 12 - 12 CHAPTER 1

890790c01.indd 2890790c01.indd 2 3/3/11 10:22:15 AM3/3/11 10:22:15 AM

Page 13

20 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATIONVirtualMachinePowerUser Provides virtual machine interaction...VirtualMa

Page 14 - Importing a Folder Structure

DEFINE USERS AND THEIR PRIVILEGES 21Install, Con gure, and Manage the vSphere EnvironmentPART IA new role can also be created at a granular level.

Page 15 - Granting Privileges

22 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATIONA er you’ve set up and tested individual permissions, you can export them to

Page 16 - Privileges are

DEFINE USERS AND THEIR PRIVILEGES 23Install, Con gure, and Manage the vSphere EnvironmentPART I $report = @() foreach($perm in $permissions

Page 17

24 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATION $report | export-csv $Filename -NoTypeInformation }}Export-PermissionsTo

Page 18 - parameter, as shown here:

DEFINE USERS AND THEIR PRIVILEGES 25Install, Con gure, and Manage the vSphere EnvironmentPART I $permissions = @() $permissions = Import-Csv $File

Page 19 - Creating New Roles

26 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATION } else { $setperm.propagate = $false } $doactual = Get-View -Id `

Page 20 - 20 CHAPTER 1

CONFIGURE DATACENTERS AND CLUSTERS 27Install, Con gure, and Manage the vSphere EnvironmentPART ICreating DatacentersDatacenters are generally crea

Page 21 - Bringing in Users

28 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATIONLISTING 1.8 Enabling HA with a failover host level and Restart Priority on a

Page 22 - Exporting Permissions

CONFIGURE DATACENTERS AND CLUSTERS 29Install, Con gure, and Manage the vSphere EnvironmentPART ITo complete this same action on an existing cluste

Page 23

CHAPTER 1Automating vCenter Server Deployment and ConfigurationIN THIS CHAPTER, YOU WILL LEARN TO:PREPARE THE VCENTER SERVER INSTALLATION 4CREATE

Page 24 - Importing Permissions

30 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATION.DESCRIPTION This function will allow you to configure DPM on an existing v

Page 25

LICENSING 31Install, Con gure, and Manage the vSphere EnvironmentPART I $clus = Get-Cluster $Cluster | Get-View $spec = New-Object vmware.Vim.C

Page 26 - 26 CHAPTER 1

32 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATION.NOTES Source: Automating vSphere Administration Authors: Luc Dekens, Arni

Page 27 - Configuring High Availability

LICENSING 33Install, Con gure, and Manage the vSphere EnvironmentPART IDynamicProperty : LicenseKey : AAAAA-BBBBB-CCCCC-DDDDD-EEEEE EditionKey

Page 28 - 28 CHAPTER 1

34 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATION -VMHost “esxhost01.mydomain.com” ` -Name $null#>param( [Str

Page 29

CHAPTER 1O ne of the focal points and key use cases of PowerCLI is the automation of tasks that are needed either as part of a disaster recovery (DR)

Page 30 - 30 CHAPTER 1

CREATE AN AUTOMATED INSTALLATION 5Install, Con gure, and Manage the vSphere EnvironmentPART I e system is joined to a domain, and not a workgrou

Page 31 - Licensing

6 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATIONitems clearly de ned within the script, using a script like this ensures each

Page 32 - 32 CHAPTER 1

CREATE AN AUTOMATED INSTALLATION 7Install, Con gure, and Manage the vSphere EnvironmentPART I$DrvPath = “C:\WINDOWS\system32\sqlncli10.dll”New-Reg

Page 33 - Licensing a Host

8 CHAPTER 1 • AUTOMATING VCENTER SERVER DEPLOYMENT AND CONFIGURATIONTo add the Host Update Utility component, try this next code:# Install vCenter

Page 34 - 34 CHAPTER 1

SET UP YOUR VCENTER SERVER FOLDER STRUCTURE 9Install, Con gure, and Manage the vSphere EnvironmentPART IFIGURE 1.1 Sample CSV layoutIn the exampl

Comments to this Manuals

No comments