forked from tchiotludo/akhq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jvm.options
34 lines (28 loc) · 1.32 KB
/
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
###########################################################################
# jvm.options #
# #
# - all flags defined here will be used to startup the JVM #
# - one flag should be specified per line #
# - lines that do not start with '-' will be ignored #
# - only static flags are accepted (no variables or parameters) #
# - dynamic flags will be appended to these on cassandra-env #
###########################################################################
# Server Hotspot JVM
-server
# ensure UTF-8 encoding by default (e.g. filenames)
-Dfile.encoding=UTF-8
# set to headless, just in case
-Djava.awt.headless=true
# generate a heap dump when an allocation from the Java heap fails
# heap dumps are created in the working directory of the JVM
-XX:+HeapDumpOnOutOfMemoryError
-XX:HeapDumpPath=/tmp/heapdump.log
# Do not rely on the system configuration
-Dfile.encoding=UTF-8
-Duser.timezone=UTC
# Jmx Remote
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=8686
-Dcom.sun.management.jmxremote.local.only=false
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false