Disable-NCacheTLS
This PowerShell cmdlet disables TLS encryption on the specified nodes. It applies to all communication types for which TLS is enabled, including ClientServerCommunication, ServerToServerCommunication, and BridgeCommunication.
Note
Disable-NCacheTLS PowerShell Cmdlet is supported for NCache 5.3.2 and above.
Disable-NCacheTLS [-Node] [-Credentials]
Examples
- This command disables TLS configuration on the nodes with IP addresses 20.200.20.11 and 20.200.20.12. It disables TLS for all enabled communication types, including Client-Server Communication, Server-to-Server Communication, and Bridge Communication.
Disable-NCacheTLS -Node "20.200.20.11,20.200.20.12"
- This command disables TLS configuration on the nodes with IP addresses 20.200.20.11 and 20.200.20.12, using security credentials. It disables TLS for all enabled communication types, including Client-Server Communication, Server-to-Server Communication, and Bridge Communication.
Disable-NCacheTLS -Node "20.200.20.11,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 |
|---|---|---|---|
-Node |
<String> |
Specifies one or more IP addresses of cache servers, cache clients, or bridge nodes where TLS settings will be applied. Provide a comma-separated list of IP addresses to disable TLS settings on the desired nodes. Please ensure that client nodes with NCache installed are included; for NCache clients without installation, use manual configuration. | - |
-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. | - |