How to increase heap size for jBoss server

前端 未结 9 1243
星月不相逢
星月不相逢 2020-12-31 05:14

I have an upload files scenario in my project. When I\'m trying to upload the large files it\'s giving me an OutOfMemory error. That error is related to Java heap size.

9条回答
  •  长发绾君心
    2020-12-31 05:21

    What to change?

    set "JAVA_OPTS=%JAVA_OPTS% -Xms1024m -Xmx2048m"

    Where to change? (Normally)

    bin/standalone.conf(Linux) standalone.conf.bat(Windows)

    What if you are using custom script which overrides the existing settings? then?

    setAppServerEnvironment.cmd/.sh (kind of file name will be there)

    More information are already provided by one of our committee members! BalusC.

提交回复
热议问题