你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Remove-ServiceFabricService

删除现有的 Service Fabric 服务。

语法

Remove-ServiceFabricService
      [-ServiceName] <Uri>
      [-Force]
      [-ForceRemove]
      [-TimeoutSec <Int32>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]

说明

Remove-ServiceFabricService cmdlet 将删除现有的 Service Fabric 服务。 必须先运行服务,然后才能将其删除。

在 Service Fabric 群集上执行任何操作之前,请使用 Connect-ServiceFabricCluster cmdlet 建立与群集的连接。

示例

示例 1:删除 Service Fabric

PS C:\> Remove-ServiceFabricService -ServiceName fabric:/myapp/persistenttodolist/svc1 -Force

此命令删除指定的 Service Fabric 服务。 由于该命令包含 Force 参数,因此该 cmdlet 不会提示你进行确认。

示例 2:ForceRemove Service Fabric 服务并显示确认

PS C:\> Remove-ServiceFabricService -ServiceName fabric:/myapp/persistenttodolist/svc1 -Confirm -ForceRemove

此命令强制删除指定的 Service Fabric 服务。 由于该命令包含 Confirm 参数,因此该 cmdlet 将提示你确认它是否是要为其执行操作的预期服务名称。 确认后,由于 ForceRemove 参数,服务将不正常地删除。

示例 3:ForceRemove Service Fabric 服务超时

PS C:\> Remove-ServiceFabricService -ServiceName fabric:/myapp/persistenttodolist/svc1 -TimeoutSec 10 -ForceRemove

此命令强制删除指定的 Service Fabric 服务。 由于命令包含 Timeout 参数,因此如果操作在指定时间内无法完成,该操作将超时。

参数

-Confirm

在运行 cmdlet 之前,提示你进行确认。

类型:SwitchParameter
别名:cf
Position:Named
默认值:False
必需:False
接受管道输入:False
接受通配符:False

-Force

强制命令运行而不要求用户确认。 Powershell 不会要求用户确认以执行命令。

类型:SwitchParameter
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-ForceRemove

指示此命令强制删除 Service Fabric 服务。 仅当删除服务超时时,才应使用此服务。例如:如果 Remove-ServiceFabricService 超时,并且服务的副本仍然存在,则表示服务停滞在 ChangeRole/Close 中,关闭序列无法完成。 通过使用 ForceRemove,我们将跳过服务关闭序列,并且服务未正常删除。 对于有状态服务,不会清理其持久状态。 若要检查副本是否存在,请使用 Get-ServiceFabricReplica

类型:SwitchParameter
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-ServiceName

指定 Service Fabric 服务的统一资源标识符(URI)。

类型:Uri
Position:0
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-TimeoutSec

指定操作的超时期限(以秒为单位)。

类型:Int32
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-WhatIf

显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行,不会进行永久更改。

类型:SwitchParameter
别名:wi
Position:Named
默认值:False
必需:False
接受管道输入:False
接受通配符:False

输入

System.Uri

输出

System.Object