你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Restart-AzHDInsightHost
重启 HDInsight 群集的特定主机。
语法
Restart-AzHDInsightHost
[[-ResourceGroupName] <String>]
[-ClusterName] <String>
[-Name] <String[]>
[-AsJob]
[-DefaultProfile <IAzureContextContainer>]
[-PassThru]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Restart-AzHDInsightHost
[[-ResourceGroupName] <String>]
[-ClusterName] <String>
[-AzureHDInsightHostInfo] <AzureHDInsightHostInfo[]>
[-AsJob]
[-DefaultProfile <IAzureContextContainer>]
[-PassThru]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
此 Restart-AzHDInsightHost cmdlet 重启 HDInsight 群集的特定主机。
示例
示例 1
# Cluster info
$clusterName = "your-hadoop-001"
Restart-AzHDInsightHost -ClusterName $clusterName -Name wn0, wn1
此命令重启群集的两个主机:worknode1、worknode2。
示例 2
# Cluster info
$clusterName = "your-hadoop-001"
$worknode1= Get-AzHDInsightHost -ClusterName $clusterName | Where-Object {$_.Name -like "wn1*"}
$worknode1 | Restart-AzHDInsightHost -ClusterName $clusterName
此命令演示如何与 cmdlet“Get-AzHDInsightHost”合作。
参数
-AsJob
在后台运行 cmdlet
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-AzureHDInsightHostInfo
获取或设置主机的名称。
类型: | AzureHDInsightHostInfo[] |
别名: | Host |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ClusterName
获取或设置群集的名称。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Confirm
提示你在运行 cmdlet 之前进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
获取或设置主机的名称。
类型: | String[] |
别名: | HostName |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-PassThru
{{ Fill PassThru Description }}
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ResourceGroupName
获取或设置资源组的名称。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示运行该 cmdlet 时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
String[]