JGroups Troubleshooting Techniques: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 11: | Line 11: | ||
<pre> | <pre> | ||
kill -SIGSTOP <jvm-pid> | kill -SIGSTOP <jvm-pid> | ||
</pre> | |||
Execution can be later resumed with: | |||
<pre> | |||
kill -SIGCONT <jvm-pid> | |||
</pre> | </pre> |
Revision as of 01:27, 5 March 2016
Internal
Verbose Logging
Suspend JVM Execution
A JVM running JGroups can be suspended from executing by sending the SIGSTOP signal into it:
kill -SIGSTOP <jvm-pid>
Execution can be later resumed with:
kill -SIGCONT <jvm-pid>