What causes this error. please assist

-1
An error occurred while executing action 'start'. com.mendix.m2ee.api.AdminException: JVM Error! at com.mendix.m2ee.server.handler.HttpAdminHandler.handle(HttpAdminHandler.java:144) Caused by: java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOfRange(Arrays.java:3209) at java.lang.String.<init>(String.java:215) at java.util.Properties.loadConvert(Properties.java:568) at java.util.Properties.load0(Properties.java:374) at java.util.Properties.load(Properties.java:325) at java.util.PropertyResourceBundle.<init>(PropertyResourceBundle.java:111) at java.util.ResourceBundle$Control.newBundle(ResourceBundle.java:2334) at java.util.ResourceBundle.loadBundle(ResourceBundle.java:1364) at java.util.ResourceBundle.findBundle(ResourceBundle.java:1328) at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1224) at java.util.ResourceBundle.getBundle(ResourceBundle.java:777) at kt.a(SourceFile:312) at com.mendix.core.Core.getInternationalizedString(SourceFile:2042) at iQ.a(SourceFile:205) at jp.a(SourceFile:100) at jB.<init>(SourceFile:12) at je.a(SourceFile:218) at je.b(SourceFile:192) at je.a(SourceFile:113) at je.a(SourceFile:155) at je.a(SourceFile:93) at je.a(SourceFile:155) at je.a(SourceFile:93) at je.a(SourceFile:155) at je.a(SourceFile:93) at iQ.a(SourceFile:155) at iQ.e(SourceFile:98) at iQ.a(SourceFile:76) at com.mendix.core.MxRuntime.z(SourceFile:284) at com.mendix.core.MxRuntime.y(SourceFile:235) at com.mendix.core.MxRuntime.a(SourceFile:217) at com.mendix.core.MxRuntime.b(SourceFile:170)
asked
2 answers
1

Like Samet said, there isn't enough memory to run your application. However, since you said this happens on starting the application and judging by the stacktrace (it's loading internationalized strings while running out of memory) this is probably due to your project being fairly large. The default setting for memory is only 64 MB so you will probably want to increase this (check https://world.mendix.com/display/refguide4/Configuration)

answered
0

Your application is out of memory. Some process in your app consumes too much memory. You could investigate why your process is consuming more memory or you can adjust the java heap in your project settings in the server section.

answered