Remove-BridgeNode
This PowerShell cmdlet removes a server node from the specified NCache Bridge, which is used for asynchronous cache replication and synchronization across connected cache instances. It is commonly used to scale down Bridge infrastructure, decommission servers, perform maintenance, or update Bridge topology. After removal, the Bridge configuration is updated automatically to maintain replication continuity.
Remove-BridgeNode -Name -Server [-Port] [-Credentials] [-NoLogo]
Examples
- This command removes Bridge server node 20.200.20.12 from the Bridge named demoBridge.
Remove-BridgeNode -Name demoBridge -Server 20.200.20.12
- This command removes Bridge server node 20.200.20.12 from the Bridge named demoBridge using security credentials.
Remove-BridgeNode -Name demoBridge -Server 20.200.20.12 -Credentials (Get-Credential john_smith)
Properties
Note
The parameters with asterisk (*) on their names are the required parameters and the rest are optional.
| Parameters | Data Types | Description | Default Value |
|---|---|---|---|
-Name* |
<String> |
Specifies the name of the Bridge registered on the server. | - |
-Server* |
<String> |
Specifies the server name where the NCache Bridge Service is running and a Bridge with the specified Bridge name is registered. This server will be removed from the specified Bridge. | - |
-NoLogo |
<SwitchParameter> |
Suppresses display of the logo banner. | False |
-Port |
<Integer> |
Specifies the port on which the NCache Bridge Service is listening. | 8260 |
-Credentials |
<pscredential> |
Specifies the user credentials required to authorize access for the specified operation. These credentials should belong to a user with the appropriate permissions at the node. | - |