Start-NCacheManagementCenter
This PowerShell cmdlet starts the NCache Management Center on the target machine. The default URL is http://localhost:8251.
Start-NCacheManagementCenter [-Server] [-Credentials] [-NoLogo]
Examples
- This command starts the NCache Management Center on local server.
Start-NCacheManagementCenter
- This command starts the NCache Management Center existing on server 20.200.20.11.
Start-NCacheManagementCenter -Server 20.200.20.11
- This command starts the NCache Management Center existing on servers 20.200.20.11 and 20.200.20.12.
Start-NCacheManagementCenter -Server "20.200.20.11,20.200.20.12"
- This command starts the NCache Management Center on local server using security credentials.
Start-NCacheManagementCenter -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 |
-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. |
- |
-NoLogo |
<SwitchParameter> |
Suppresses display of the logo banner. |
False |
start-ncachemanagementcenter [-server] [-userid] [-password] [-nologo]
Examples
- This command starts the NCache Management Center on local server.
start-ncachemanagementcenter
- This command starts the NCache Management Center existing on server 20.200.20.11.
start-ncachemanagementcenter -server 20.200.20.11
- This command starts the NCache Management Center existing on servers 20.200.20.11 and 20.200.20.12.
start-ncachemanagementcenter -server "20.200.20.11,20.200.20.12"
- This command starts the NCache Management Center on local server using security credentials.
start-ncachemanagementcenter -userid john_smith -password pass123
Properties
Note
The parameters with asterisk (*) on their names are the required parameters and the rest are optional.
| Parameters |
Data Types |
Description |
Default Value |
-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 |
-userid |
<String> |
Specifies the user id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user id must be the active directory user id. |
- |
-password |
<String> |
Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on cache server. This password must be the same as the active directory user password. |
- |
-nologo |
<SwitchParameter> |
Suppresses display of the logo banner. |
False |