mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 23:47:57 -05:00
* fixes PIE-1374 add placeholders system to have global variables in markdown
implement and configure a first batch of variables for versions to be changeable
in only one place and change in the whole doc.
available placeholders are :
{{ versions.pantheon_stable }} -> the latest stable release
{{ versions.quickstart }} -> the latest quickstart release whicjh is currently
pointing to the same value as Pantheon as QS and Pantheon releases are in sync
but I still keep two separated values to make it clear.
Also includes few fixes like removing $ in front of bash commands and changed an
info block syntax
Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>
16 lines
685 B
Markdown
16 lines
685 B
Markdown
description: Passing Java virtual machine JVM options to Pantheon at runtime
|
|
<!--- END of page meta data -->
|
|
|
|
# Passing JVM Options
|
|
|
|
To perform tasks such as attaching a debugger or configuring the garbage collector, pass JVM options to Pantheon.
|
|
|
|
Pantheon passes the contents of the `PANTHEON_OPTS` environmental variable to the JVM. Set standard JVM options in the `PANTHEON_OPTS` variable.
|
|
|
|
For Bash-based executions, you can set the variable for only the scope of the program execution by setting it before starting Pantheon.
|
|
|
|
!!! example
|
|
```bash
|
|
PANTHEON_OPTS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 \
|
|
pantheon --network=rinkeby
|
|
``` |