Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

Table of Contents

Summary 

This document contains step-by-step flow how to effectively and fast take a heap dump from folio modules.

...

Code Block
languagebash
themeMidnight
titleSSH command
ssh -i "folio-int.pem" ec2-user@{IP}

3. Do Docker ps and grab id of needed container;

4. SSH inside container by command 

Code Block
iconfalse
languagebash
themeMidnight
titledocker ssh
docker exec -it {dockerID} /bin/bash


5. Inside entry point (default entry folder) run

Code Block
themeMidnight
titleheap Dumping
 jmap -dump:format=b,file=mod-oai-pmh.hprof PID

...