Invoke-ServerLogger
The Invoke-ServerLogger PowerShell cmdlet is an important troubleshooting tool used for real-time troubleshooting within NCache clusters. It enables administrators to turn on low-level logging for the socket-server and all connected clients at the same time. This is very important for auditing network latency, communication bottlenecks, and tracing error messages. The logs are stored on the installed directory of NCache in the folder %NCHOME%\log-files as part of this PowerShell cmdlet execution.
Invoke-ServerLogger [-Enable] [-Disable] [-NoLogo] [-Port] [-Server] [-Credentials]
Examples
- This command enables socket server logs.
Invoke-ServerLogger -Enable
- This command disables socket server logs.
Invoke-ServerLogger -Disable
- This command enables socket server logs, using security credentials.
Invoke-ServerLogger -Enable -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 |
|---|---|---|---|
-Enable |
<SwitchParameter> |
Enables error and detailed logging on the server side. | False |
-Disable |
<SwitchParameter> |
Disables error and detailed logging on the server side. | False |
-NoLogo |
<SwitchParameter> |
Suppresses display of the logo banner. | False |
-Port |
<Integer> |
Specifies the server port where NCache Service is listening. | 8250 |
-Server |
<String> |
Specifies a server name where the NCache Service is running and a cache with the specified cache-name is registered. | IP of local machine |
-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. | - |