0

Hi I've installed Apache Marathon (latest version available on APT repo) on Debian 8.5 (Jessie). The configuration in /etc/marathon/conf/ works very well for that kind of parameters but how can I change the default -xmx512m parameter?

regards guenther

guenhter
  • 11,255
  • 3
  • 35
  • 66

1 Answers1

1

As per Marathon documentation Java options including -Xmxvalue is configured using JAVA_OPTS environment variable. You can set JAVA_OPTS for marathon by defining it in /etc/default/marathon like so JAVA_OPTS="-Xmx768m -Xms384m"

surdy
  • 149
  • 3