jvm.optionsΒΆ

[engineDir]/configuration/jvm.options

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
################################################################
# JVM options of the Axon.ivy Engine
################################################################

# General settings

-XX:-OmitStackTraceInFastThrow

#----------------------------------------------------------------

# Memory Settings
# Xms represents the initial size of total heap space
# Xmx represents the maximum size of total heap space

-Xmx2g
-Xms128m

#----------------------------------------------------------------

# Garbage collector

-XX:+UseG1GC
-XX:+UseStringDeduplication

#----------------------------------------------------------------

# Headless mode
# no X11 environment is required

-Djava.awt.headless=true

#----------------------------------------------------------------

# JMX Settings
# enable these settings if you want to have jmx access from another
# user on the same machine or from a remote host.

#-Dcom.sun.management.jmxremote.port=9003
#-Dcom.sun.management.jmxremote.login.config=jmx
#-Djava.security.auth.login.config=configuration/jaas.config
#-Dcom.sun.management.jmxremote.ssl=false
#-Dcom.sun.management.jmxremote.autodiscovery=true 

# define the ip address or hostname of this machine, on which
# the jmx port should be bound for remote access.

#-Djava.rmi.server.hostname=<IP of the machine>

#----------------------------------------------------------------

# Remote Debugging
# enable these settings to activate Java remote debugging

#-agentlib:jdwp=transport=dt_socket,server=y,address=*:8000,suspend=n