Remove-Bridge
The Remove-Bridge cmdlet enables users to remove a registered NCache Bridge from a specified server node. This is an essential administrative task when deactivating a Cross-Datacenter (WAN) Replication or reconfiguring Disaster Recovery. Removing a Bridge stops data synchronization between the connected sites.
Remove-Bridge -Name -Server [-Port] [-Credentials] [-NoLogo]
Examples
- This command removes the already existing Bridge named demoBridge on server 20.200.20.11.
Remove-Bridge -Name demoBridge -Server 20.200.20.11
- This command uses a port and removes Bridge named demoBridge on server 20.200.20.11.
Remove-Bridge -Name demoBridge -Server 20.200.20.11 -Port 10003
- This command removes the already existing Bridge named demoBridge on server 20.200.20.11 using security credentials.
Remove-Bridge -Name demoBridge -Server 20.200.20.11 -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 a server name where the NCache Service is running and a cache with the specified cache-name is registered. | - |
-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. | - |