Stop-NlbClusterNode

Stop-NlbClusterNode

Stops a node in a Network Load Balancing (NLB) cluster.

Sintaxis

Parameter Set: NonPipeline
Stop-NlbClusterNode [[-HostName] <String> ] [-Drain] [-InterfaceName <String> ] [-Timeout <UInt32> ] [ <CommonParameters>]

Parameter Set: Pipeline
Stop-NlbClusterNode -InputObject <Node[]> [-Drain] [-Timeout <UInt32> ] [ <CommonParameters>]

Descripción detallada

The Stop-NlbClusterNode cmdlet stops a node in a Network Load Balancing (NLB) cluster. When the nodes are stopped in the cluster, client connections that are already in progress are interrupted. To avoid interrupting active connections, consider using the Drain parameter, which allows the node to continue servicing active connections but disables all new traffic to that node.

Parámetros

-Drain

Drains existing traffic before stopping the cluster node. If this parameter is omitted, then the existing traffic will be dropped.

Alias

D

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-HostName<String>

Specifies the name of the cluster host against which this cmdlet is run. If this parameter is omitted or a value of . is entered, then the local cluster is assumed.

Alias

Host,HN,H

¿Requerido?

false

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-InputObject<Node[]>

Specifies the cluster node to stop.

Alias

ninguno

¿Requerido?

true

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByValue, ByPropertyName)

¿Aceptar caracteres comodín?

false

-InterfaceName<String>

Specifies the interface to which NLB is bound. This is the interface of the cluster against which this cmdlet is run.

Alias

Interface,IN,I

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-Timeout<UInt32>

Specifies the number of minutes to wait for the drain operation before stopping the cluster node. After the time expires, the existing connections will be dropped.

Alias

T

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • Microsoft.NetworkLoadBalancingClusters.PowerShell.Node

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

  • Microsoft.NetworkLoadBalancingClusters.PowerShell.Node

Ejemplos

EXAMPLE 1

This example stops the cluster node named node2 on the local cluster.

PS C:\> Stop-NlbClusterNode node2

EXAMPLE 2

This example stops the local cluster node. Before this cmdlet stops the cluster, this cmdlet drains all existing connections for up to 10 minutes. During that time, new connections will not be established on this node. Any remaining connections after the 10 minutes will be forcefully terminated.

PS C:\> Stop-NlbClusterNode -Drain -Timeout 10

Temas relacionados

Add-NlbClusterNode

Get-NlbClusterNode

Remove-NlbClusterNode

Resume-NlbClusterNode

Set-NlbClusterNode

Start-NlbClusterNode

Suspend-NlbClusterNode