使用vSphere Power Cli初始化数据中心


Define Users and Their PrivilegesGranting Privileges查阅vCenter拥有的所有的权限Get-VIPrivilege | Select Name, Description查看你可以管理的管理的子对象的数目Get-VIPrivilege | Measure-Object你可以查看你对特定object的权限Get-VIPrivilege -Name *Host*Get-VIPrivilege -Name *vm*查看权限组Get-VIPrivilege -PrivilegeGroup | select name, descriptionCreating New Roles 查看vCenter已经有的定义的角色Get-VIRole | Select Name, Description定义新的角色并给相应的权限PowerCLI C:> New-VIRole -Name “New Custom Role” -Privilege (Get-VIPrivilege -PrivilegeGroup Datacenter)创建一个新的角色:New Custom Role并具有对Datacenter操作组的所有的特权:PowerCLI C:> New-VIRole -Name “New Custom Role1” -Privilege (Get-VIPrivilege -PrivilegeItem “create datacenter”)创建一个新的角色:New Custom Role1并具有 对Datacenter有新建的子权限:Note:可以在vCenter上看到相关的结果:可以从更小的粒度来定义角色并给角色赋予相应的权限$MyPriv = “Host Profile”(定义你需要的权限)New-VIRole “New Custom Role3” -Privilege $MyPriv (定义新的角色并赋予相应的权限)把角色授权给用户语法New-VIPermission [-Entity] [-Principal] [-Role] [-Propagate []] [-Server ] [-WhatIf] [-Confirm] []三个最基本的参数:Role The role which you will assign to the userPrincipal The user or group to which you wish to assign permissionsEntity The object, folder, cl免费云主机域名uster, datacenter, or resource pool for which you would like to grant permissions to the user前提:首先你要授权的用户是已经存在你的vCenter上的,可以是本地的,也是可以域的成员New-VIPermission -Entity (Get-Datacenter) -Principal Virtualtest2 -Role “New Custom Role” -Propagate 1结果:在Datacenter上Virtualtest2用户拥有New Custom Role角色的权限,即对Datacenter有操作的权限2. Configure Datacenters and Clusters Creating Datacenters
http://www.vmware.com/support/developer/PowerCLI/PowerCLI51R2/html/New-Datacenter.html必要的参数:location ,name先创建一个folder, 然后把新建的数据中心放进去$folder = Get-Folder -NoRecursion | New-Folder -Name DC_FolderNew-Datacenter -Location $folder -Name ITC_Test_DC脚本执行后的结果如下:Creating ClustersNew-Cluster -Name ITC_Test -Location ITC_Test_DC默认情况下:HA和DRS都是没有开启的,如果你没有选择开启这连个选项的话脚本执行后的结果:Configuring High Availability 创建新的集群并对集群进行开启HA的操作
$ProductionCluster = New-Cluster -Location $BostonDC-Name Production-HAEnabled -HAAdmissionControlEnabled -HAFailoverLevel 1 -HARestartPriority Medium对已经存在的集群做HA的操作Set-Cluster脚本实现后的结果:Configuring Distributed Resource Scheduler Configuring DRS on a new cluster(新建并开启DRS)Configuring DRS on an existing cluster(对存在的进行操作)
Set-Cluster脚本操作的结果:Configuring DPM on a cluster要使用脚本来定制Viewing License InformationLicensing a Host

相关推荐: linux如何查看一个用户组里有哪些用户

这篇文章主要介绍了linux如何查看一个用户组里有哪些用户的相关知识,内容详细易懂,操免费云主机域名作简单快捷,具有一定借鉴价值,相信大家阅读完这篇linux如何查看一个用户组里有哪些用户文章都会有所收获,下面我们一起来看看吧。 linux查看用户组下所有用户…

免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。

(0)
打赏 微信扫一扫 微信扫一扫
上一篇 01/28 12:24
下一篇 01/28 12:24