• Facebook
  • Twitter
  • Youtube
  • LinedIn
  • RSS
  • Docs
  • Comparisons
  • Blogs
  • Download
  • Contact Us
Download
Show / Hide Table of Contents

New-MemoryDump

This PowerShell cmdlet allows users to generate a memory dump of a cache or the NCache Service / NCache Management Center process for diagnostic and troubleshooting purposes. When creating a dump for the NCache Service or Management Center, the corresponding Process ID must be specified to identify the target process.

New-MemoryDump executes asynchronously by default and returns immediately without waiting for dump completion; however, users can specify -WaitForCompletion to block execution until the dump is fully generated. Upon execution, the cmdlet outputs the location on the target server where the memory dump file is saved.

New-MemoryDump -Server -CacheName -ProcessId [-WaitForCompletion] [-Port] [-Credentials] [-NoLogo]
Important
  • You must specify either CacheName or ProcessId. One of the two is required to generate the memory dump.
  • Please note that you need to enable the ptrace flag for the creation of memory dumps in Linux, else you will get the error: "Permission Denied: Failed to take memory dump. This is due to restricted memory access." Set the value of ptrace_scope to 0 to resolve the error. Please note that this change occurs through the combination of echo, the pipe symbol (|), and the tee command, which altogether writes the new value into the system file with the necessary permissions.

Examples

  • This command initiates dump generation on server 20.200.20.11 for the cache named demoCache.
New-MemoryDump -Server 20.200.20.11 -CacheName demoCache
  • This command initiates dump generation on server 20.200.20.11 for Process ID 1234.
New-MemoryDump -Server 20.200.20.11 -ProcessId 1234
  • This command initiates dump generation on server 20.200.20.11 for Process ID 1234 and waits for the dump generation to complete.
New-MemoryDump -Server 20.200.20.11 -ProcessId 1234 -WaitForCompletion
  • This command initiates dump generation on server 20.200.20.11 for the cache named demoCache using security credentials.
New-MemoryDump -Server 20.200.20.11 -CacheName demoCache -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. -
-CacheName* <String> Specifies cache name for which the dump needs to be created on the server specified.
Note: The cache must already exist on the source server.
-
-ProcessId* <Integer> Specifies the Process ID for which dump needs to be created on the server specified. -
-WaitForCompletion <SwitchParameter> If specified, the cmdlet does not exit until the memory dump is captured. False
-NoLogo <SwitchParameter> Suppresses display of the logo banner. False
-Port <Integer> Specifies the server port where the NCache Service is listening. 8250
-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. -

Contact Us

PHONE

+1 214-619-2601   (US)

+44 20 7993 8327   (UK)

 
EMAIL

sales@alachisoft.com

support@alachisoft.com

NCache
  • Edition Comparison
  • NCache Architecture
  • Benchmarks
Download
Pricing
Try Playground

Deployments
  • Cloud (SaaS & Software)
  • On-Premises
  • Kubernetes
  • Docker
Technical Use Cases
  • ASP.NET Sessions
  • ASP.NET Core Sessions
  • Pub/Sub Messaging
  • Real-Time ASP.NET SignalR
  • Internet of Things (IoT)
  • NoSQL Database
  • Stream Processing
  • Microservices
Resources
  • Magazine Articles
  • Third-Party Articles
  • Articles
  • Videos
  • Whitepapers
  • Shows
  • Talks
  • Blogs
  • Docs
Customer Case Studies
  • Testimonials
  • Customers
Support
  • Schedule a Demo
  • Forum (Google Groups)
  • Tips
Company
  • Leadership
  • Partners
  • News
  • Events
  • Careers
Contact Us

  • EnglishChinese (Simplified)FrenchGermanItalianJapaneseKoreanPortugueseSpanish

  • Contact Us
  •  
  • Sitemap
  •  
  • Terms of Use
  •  
  • Privacy Policy
© Copyright Alachisoft 2002 - . All rights reserved. NCache is a registered trademark of Diyatech Corp.
Back to top