CA Server Automation optionally integrates with Microsoft System Center Virtual Machine Manager (SCVMM) for Hyper-V provisioning. SCVMM is not required for Hyper-V monitoring and management. Instead of SCVMM, you can also use local templates (Hyper-V Server bound) for VM provisioning.
When using the optional SCVMM integration, verify the following prerequisites and apply the required settings:
To apply required settings for using Microsoft SCVMM
winrm quickconfig
Run the following command to allow unencrypted HTTP traffic:
winrm set winrm/config/service @{AllowUnencrypted="true"}
To enable HTTPS, obtain an SSL certificate for your SCVMM server, install it, and run the following command:
winrm quickconfig -transport:https
Depending on the expected utilization of the SCVMM server in your environment, VM provisioning can fail due to inadequate parameter settings for the Quota Management for Remote Shells on the SCVMM server. Affected parameters are:
Specifies the maximum number of shells per user.
Default: 5
Specifies the maximum number of concurrent users who can open shells.
Default: 5
If you expect more than one provisioning job at a time, you can increase the parameter settings on the SCVMM server as follows:
winrm set winrm/config/winrs @{MaxShellsPerUser="number"} winrm set winrm/config/winrs @{MaxConcurrentUsers="number"}
Example
winrm set winrm/config/winrs @{MaxShellsPerUser="30"} winrm set winrm/config/winrs @{MaxConcurrentUsers="10"}
See also the Quota Management for Remote Shells article from Microsoft.
Copyright © 2013 CA. All rights reserved. |
|