...
...
...
...
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 | ||||||
---|---|---|---|---|---|---|
| ||||||
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 | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
docker exec -it {dockerID} /bin/bash |
5. Inside entry point (default entry folder) run
Code Block | ||||
---|---|---|---|---|
| ||||
jmap -dump:format=b,file=mod-oai-pmh.hprof PID |
...