Could not reserve enough space for 2097152kb object heap как исправить

In this post, we will see an error(Could not reserve enough space for 2097152kb object heap object heap) which you might have encountered while dealing with

In this post, we will see an error(Could not reserve enough space for 2097152kb object heap object heap) which you might have encountered while dealing with JVM.We will see how can we fix this issue.

Table of Contents

  • Heap size
    • Maximum heap size
  • Cause 1: Did not specify heap size
    • Fix 1
  • Cause 2: Too large Xmx value
    • Fix 2
  • Cause 3: Specifying large heap size more than physical memory
    • Fix 3
    • Set _JAVA_OPTIONS environment variable
  • Could not reserve enough space for 2097152kb object heap
    • Apache cordova
    • Minecraft
    • Jfrog artifactory
  • Conclusion

error occurred during initialization of vm could not reserve enough space for 2097152kb object heap is generally raised when Java process can not create java virtual machine due to memory limitations.

Before we go through causes and fixes for this issue, let’s go through few basic things.

Heap size

Heap size is memory allocation space for storing java objects at run time. This heap size can have minimum and maxiumn heap size. You can specify minimum and maximum size using Xmx and Xms VM arguments.

Maximum heap size

The maximum possible heap size can be determined by available memory space. It is different on 32 bit and 64 bit as follows.

  1. 2^32 (~4GB) on 32 bit JVM
  2. 2^64 (~16EB) on 64 bit JVM.

In general, you will get 1.4-1.6 GB on 32 bit windows and approximately 3GB on on 32 bit linux.

If you require large heap, then you should generally use 64 bit JVM.

Cause 1: Did not specify heap size

Let’s say you run your java program without specifying any heap size and you get below error.

Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.

You will get this error more often in 32 bit JVM rather than 64-bit JVM

Reason
32-bit Java requires contiguous free space in memory to run. If you specify a large heap size, there may not be so much contiguous free space in memory even if you have much more free space available than necessary.
Installing 64-bit version might solve this issue in this case.

Fix 1

You can fix this error by running Java with lower heap size such as -Xmx512m.

java Xmx512M MyApplication

Cause 2: Too large Xmx value

If you specify too large memory with -Xmx option on 32 bit VM, you may also get this error.
For example:
Let’s say you are getting an error with below execution.

java Xms1536M Xmx1536M MyApplication

Fix 2

You might not have enough contiguous free space in memory.You can run the application with slightly lower heap size to resolve the issue.

javaXms1336M Xmx1336M MyApplication

Cause 3: Specifying large heap size more than physical memory

If you specify large heap size more than physical memory available on 64-bit or 32-bit  machine, you will get this error.
For example:
Let’s say You have 3 GB RAM on your machine and you are executing below command, you will get this error.

java Xms4096M Xmx4096M MyApplication

Fix 3

You can run the application with heap size which is less than your physical memory.

javaXms2048M Xmx2048M MyApplication

Sometimes above solutions might not work.

Set _JAVA_OPTIONS environment variable

So you can set _JAVA_OPTIONS as the environment variable.

In Linux

-bash-3.2$ export _JAVA_OPTIONS =»-Xmx512M»
-bash-3.2$ javac MyApp.java

In Window

Go to Start->Control Panel->System->Advanced(tab)->Environment Variables->System
Variables->New: Variable name: _JAVA_OPTIONS
Variable value: -Xmx512M

💡 Did you know?

JDK_JAVA_OPTIONS is prefered environment variable from Java 9+ onward to specify Java options. It will be ignored in the version lesser than Java 9.

You might get an specific error Could not reserve enough space for 2097152kb object heap in case you are using any tool. It simply means that JVM is not able to acquire 2 GB heap space which is required by the tool by default.

Apache cordova

Apache Cordova is a mobile application development framework originally created by Nitobi.
If you are getting this error on Apache cordova, here are solutions.

  1. Switch from 32 bit JVM to 64 bit JVM
  2. set _JAVA_OPTIONS environment variable with -Xmx512M
  3. Change

    args.push(‘-Dorg.gradle.jvmargs=-Xmx2048m’)

    to  

    args.push(‘-Dorg.gradle.jvmargs=-Xmx1024m’);

    on the following files located on your machine.

    project-folderplatformsandroidcordovalibbuildersbuilders.js
    project-folderplatformsandroidcordovalibbuildersGradleBuilder.js
    project-folderplatformsandroidcordovalibbuildersStudioBuilder.js

Minecraft

If you are getting this error, while launching Minecraft game, then you need to switch from 32 bit JVM to 64 bit JVM.

Jfrog artifactory

If you are using JFrom artifactory as artifact life-cycle management tool and getting Could not reserve enough space for 2097152kb object heap while launching it.
Go to bin directory of your JFrog Artifactory installation, change following line in arifactory.bat file.

set JAVA_OPTIONS=-server Xms512m Xmx2g Xss256k XX:+UseG1GC

to

set JAVA_OPTIONS=-server Xms512m Xmx1024m Xss256k XX:+UseG1GC

This should resolve this error for JFrog Artifactory installation.

Conclusion

  • If you might have installed 32 bit JVM in 64 bit machine.Upon uninstalling that version and installing 64 bit version of Java
  • You might have provided too large heap size which might be greater than physical memory. In this case, you need to reduce heap size of JVM.
  • If above solution does not work, you can set JAVA_OPTS as the environment variable to solve this issue. If you set JAVA_OPTS environment variable, then each JVM initialization will automatically use configuration from this environment variable

I hope this will resolve your issue with error occurred during initialization of vm could not reserve enough space for 2097152kb object heap.

  • Partition Wizard

  • Partition Manager

  • Solved: Minecraft Could Not Reserve Enough Space for Object Heap

By Amy | Follow |
Last Updated December 08, 2022

Have you come across the Minecraft could not reserve enough space for object heap? How to fix could not reserve enough space for object heap Minecraft? Well, MiniTool will provide you with some methods to fix Minecraft could not reserve enough space for object heap in this post.

Possible Causes for Minecraft Could Not Reserve Enough Space for Object Heap

As it known to all, Minecraft is a popular sandbox game, which wins compliments from users across the world. However, you sometimes might encounter the Minecraft server could not reserve enough space for object heap error when you allocate more ram to Minecraft. In spite that it is helpful to allocate more RAM to Minecraft.

Tip: You need to pay attention to the space here is RAM in fact not the disk space.

What causes could not reserve enough space for object heap Minecraft? Here are several possible reasons. They are summarized as follows:

  • The Java JRE version is incorrect.
  • You specify a large heap size, but the amount of contiguous free space in memory is insufficient.
  • The heap size is larger than amount that the process can hold.
  • The Java version cannot reserve the specified amount of memory. The Minecraft could not reserve enough space for 2097152kb object heap error is one example.

The causes above can lead to the Minecraft could not reserve enough space for object heap error. Certainly, other elements may also trigger the error. How to fix this issue? Please keep reading the following content.

If you like playing games, you may also this like this: Top 3 Fixes to the League of Legends Login Unexpected Error

Solution 1: Lower Heap Size

As talked about earlier, a large heap size will result in the Minecraft could not reserve enough space for the object heap error. So, once you encounter this issue, you can lower the heap size to fix it.

How to do? Well, you can lower the heap size in jobss file, edit bat or sh file. Alternatively, you can also search for -Xms and change it to a proper size.

Solution 2: Add a New System Variable

When you receive the error – Minecraft could not reserve enough space for object heap, you can fix it by adding a new system variable. You’d better create a system restore point or back up your Windows before carrying out this method. By doing so, you can avoid data loss, computer crash or some other accidents.

Step 1: Open the Run window by holding Windows and R keys, and then type control and click on OK to go on.

open control panel from the run utility

Step 2: Click on System and Security > System.

go to the system option

Step 3: Click on Advanced system settings in the left pane.

Advanced system settings

Step 4: In the pop-up window, click Environmental Variables. Under the System Variables section, click on the New button to go on.

click the New button

Step 5: Type the following contents to the corresponding position and click on OK.

Variable name: _JAVA_OPTIONS

Variable value: –Xmx512M

enter the contents and save the changes

This operation will set the memory size to 512MB, which helps you solve the Minecraft could not reserve enough space for object heap error.

Solution 3: Install 64-bit Java JRE

Alternatively, you can also install 64-bit Java JRE to fix the could not reserve enough space for the object heap Minecraft error. How to do? Here are steps.

Step 1: Go to the Java JRE page and click Windows Offline (54-bit) to download it.

Step 2: After finishing downloading, double click on the Java installer to install the 64-bit edition of the Java runtime environment.

Step 3: Launch the Minecraft server and try to allocate more RAM to the server to check if the Minecraft could not reserve enough space for the object heap error is fixed successfully. If it still occurs, follow the steps below. On the contrary, you can ignore these steps.

Step 4: Open the Run window, and then type cmd and press the Enter key.

Step 5: In the next window, type java -version and hit Enter. Then, you will see the detailed Java version information.

Step 6: If the “64-bit Server VM” doesn’t show on the result, it indicates that Minecraft is still finding the 32-bit version. You should remove the previous version and reinstall the 64-bit version by referring to the given steps.

About The Author

Amy

Position: Columnist

Having writing articles about computer tech for a long time, I am rather experienced especially on the aspect of computer optimization, PC enhancement, as well as tech terms explanation. The habit of looking through tech forums makes me a great computer issues collector. And then, many articles related to these issues are released, which benefit plenty of users. Professional, effective, and innovative are always the pursuit of an editing worker.

  • Partition Wizard

  • Partition Manager

  • Solved: Minecraft Could Not Reserve Enough Space for Object Heap

By Amy | Follow |
Last Updated December 08, 2022

Have you come across the Minecraft could not reserve enough space for object heap? How to fix could not reserve enough space for object heap Minecraft? Well, MiniTool will provide you with some methods to fix Minecraft could not reserve enough space for object heap in this post.

Possible Causes for Minecraft Could Not Reserve Enough Space for Object Heap

As it known to all, Minecraft is a popular sandbox game, which wins compliments from users across the world. However, you sometimes might encounter the Minecraft server could not reserve enough space for object heap error when you allocate more ram to Minecraft. In spite that it is helpful to allocate more RAM to Minecraft.

Tip: You need to pay attention to the space here is RAM in fact not the disk space.

What causes could not reserve enough space for object heap Minecraft? Here are several possible reasons. They are summarized as follows:

  • The Java JRE version is incorrect.
  • You specify a large heap size, but the amount of contiguous free space in memory is insufficient.
  • The heap size is larger than amount that the process can hold.
  • The Java version cannot reserve the specified amount of memory. The Minecraft could not reserve enough space for 2097152kb object heap error is one example.

The causes above can lead to the Minecraft could not reserve enough space for object heap error. Certainly, other elements may also trigger the error. How to fix this issue? Please keep reading the following content.

If you like playing games, you may also this like this: Top 3 Fixes to the League of Legends Login Unexpected Error

Solution 1: Lower Heap Size

As talked about earlier, a large heap size will result in the Minecraft could not reserve enough space for the object heap error. So, once you encounter this issue, you can lower the heap size to fix it.

How to do? Well, you can lower the heap size in jobss file, edit bat or sh file. Alternatively, you can also search for -Xms and change it to a proper size.

Solution 2: Add a New System Variable

When you receive the error – Minecraft could not reserve enough space for object heap, you can fix it by adding a new system variable. You’d better create a system restore point or back up your Windows before carrying out this method. By doing so, you can avoid data loss, computer crash or some other accidents.

Step 1: Open the Run window by holding Windows and R keys, and then type control and click on OK to go on.

open control panel from the run utility

Step 2: Click on System and Security > System.

go to the system option

Step 3: Click on Advanced system settings in the left pane.

Advanced system settings

Step 4: In the pop-up window, click Environmental Variables. Under the System Variables section, click on the New button to go on.

click the New button

Step 5: Type the following contents to the corresponding position and click on OK.

Variable name: _JAVA_OPTIONS

Variable value: –Xmx512M

enter the contents and save the changes

This operation will set the memory size to 512MB, which helps you solve the Minecraft could not reserve enough space for object heap error.

Solution 3: Install 64-bit Java JRE

Alternatively, you can also install 64-bit Java JRE to fix the could not reserve enough space for the object heap Minecraft error. How to do? Here are steps.

Step 1: Go to the Java JRE page and click Windows Offline (54-bit) to download it.

Step 2: After finishing downloading, double click on the Java installer to install the 64-bit edition of the Java runtime environment.

Step 3: Launch the Minecraft server and try to allocate more RAM to the server to check if the Minecraft could not reserve enough space for the object heap error is fixed successfully. If it still occurs, follow the steps below. On the contrary, you can ignore these steps.

Step 4: Open the Run window, and then type cmd and press the Enter key.

Step 5: In the next window, type java -version and hit Enter. Then, you will see the detailed Java version information.

Step 6: If the “64-bit Server VM” doesn’t show on the result, it indicates that Minecraft is still finding the 32-bit version. You should remove the previous version and reinstall the 64-bit version by referring to the given steps.

About The Author

Amy

Position: Columnist

Having writing articles about computer tech for a long time, I am rather experienced especially on the aspect of computer optimization, PC enhancement, as well as tech terms explanation. The habit of looking through tech forums makes me a great computer issues collector. And then, many articles related to these issues are released, which benefit plenty of users. Professional, effective, and innovative are always the pursuit of an editing worker.

by Tashreef Shareef

Tashreef Shareef is a software developer turned tech writer. He discovered his interest in technology after reading a tech magazine accidentally. Now he writes about everything tech from… read more


Updated on July 30, 2021

  • Minecraft is one of the most popular sandbox games that you can play across platforms. It also allows users to create their own server to play with friends.
  • However, at times while allocating more space to your Minecraft server or accessing the server, you may encounter the could not reserve enough space error.
  • For more great articles about this amazing voxel game, check out our dedicated Minecraft hub.
  • Visit our detailed Gaming section to learn and fix more Minecraft and other gaming-related issues.

Minecraft server couldn't reserve enough space

True gamers use the best gaming browser: Opera GXOpera GX is a special version of the famous Opera browser that is built specifically to fulfill gamer’s needs. Packed with unique features, Opera GX will help you get the most out of gaming and browsing everyday:

  • CPU, RAM and Network limiter with hot tab killer
  • Integrated with Twitch, Discord, Instagram, Twitter and Messengers directly
  • Built-in sound controls and custom music
  • Custom color themes by Razer Chroma and force dark pages
  • Free VPN and Ad blocker
  • Download Opera GX

It is always beneficial to add more RAM to your Minecraft server. However, at times while adding more RAM or allocating more space, you may encounter the could not reserve enough space for object heap. This error can occur due to incorrect version of Java JRE.

Several users have reported similar errors in the Reddit community forum.

I hope this is the right sub-reddit anyway, i am making a survival server with my friends and when i add more ram i am getting this error
C:UsersmeandDesktopServer>java -Xmx2048M -Xms2048M -jar server.jar nogui
Error occurred during initialization of VM

Could not reserve enough space for 2097152KB object heap
C:UsersmeandDesktopServer>PAUSE
Press any key to continue . . .

If you are also troubled by this error, here are a couple of troubleshooting tips to help you resolve the Minecraft server could not reserve enough space issues in Windows.


How do I fix the could not reserve enough space Minecraft error?

1. Install 64-bit Java JRE

could not reserve enough space
  1. Go to the Java JRE download page.
  2. Click on Windows Offline (64-bit). Wait for the download to complete.
  3. Double-click on the Java installer to install the 64-bit edition of the Java runtime environment.
  4. Launch your Minecraft server and try to allocate more RAM to the server.
  5. Check if the could not reserve enough space error is resolved.

If the issue persists even after installing the 64-bit version of Java JRE, follow these steps.

  1. Press Windows Key + R to open Run.
  2. Type cmd and click OK to open Command Prompt.
    could not reserve enough space
  3. In Command Prompt, type the following command and click OK:
    java -version 
  4. The above command will display the Java version installed on your computer. The result will look something like this:
    C:>java -version
    java version "1.8.0_221"
    Java(TM) SE Runtime Environment (build 1.8.0_221-b11)
    Java HotSpot(TM) 64-Bit Server VM (build 25.221-b11, mixed mode)
  5. If it doesn’t say “64-bit Server VM”, it means Minecraft is still finding the 32-bit version.
  6. To fix this, you need to remove the older version and reinstall the 64-bit edition again.

Remove and reinstall 64-bit Java JRE

could not reserve enough space
  1. Press Windows Key + R.
  2. Type appwiz.cpl and click OK to open Control Panel.
  3. Choose the 32-bit edition of Java and click on Uninstall.
  4. Also, uninstall Java JRE 64-bit edition.
  5. Once done, install the 64-bit Java JRE downloaded in the first step.
  6. Try allocating more space to your Minecraft server and check for any improvements.

2. Add a new system variable

Note: Before proceeding with the below steps, create a system restore point.

could not reserve enough space
  1. Press Windows Key + R to open Run.
  2. Type control and click OK to open Control Panel.
  3. Go to System and Security > System.
  4. Click on View advanced system settings from the left pane.
  5. In the System Properties window, click on the Environmental Variables button.
    Java Minecraft RAM error
  6. Under the System Variables section, click the New button.
    Java Minecraft RAM error
  7. Enter the following for Variable name and value:
    Variable name: _JAVA_OPTIONS
    Variable value: Xmx512M
  8. Click OK to save the changes.
  9. Click OK on all the open Windows.

The above process will set the memory size to 512MB and fix the could not reserve enough space Minecraft server error.

The Minecraft server could not reserve enough space error can be resolved by installing the 64-bit edition of Java JRE. Since the 32-bit edition is limited on the memory front, installing the 64-bit edition of Java will remove the limitation.

Some PC issues are hard to tackle, especially when it comes to corrupted repositories or missing Windows files. If you are having troubles fixing an error, your system may be partially broken.
We recommend installing Restoro, a tool that will scan your machine and identify what the fault is.
Click here to download and start repairing.

However, if the error occurs without making any changes, try limiting the memory allocation to 512MB by adding a new system variable in Control Panel.

3. Try another Minecraft server alternative

apex-hosting-minecraft-server

One of the key aspects of running a server is RAM. If you don’t have enough RAM, you won’t be able to run the server without lags.

With Minecraft Server Hosting, you can upgrade or downgrade your RAM wherever you want to ensure you get the correct balance you need. The first step in creating a server is to know what server plan to choose.

RAM is required by the server to support all of the connected players and run all of the software. The player amount, type of plugins, or mods will affect the amount of ram you will need on your server. That’s why with considerable RAM you can do more with your server.

The Minecraft Server Hosting’s plans are:

  • 1GB – the recommended plan for basic small vanilla servers.
  • 2GB – you can add some base plugins or mods and increase your player base on your server.
  • 3GB – to install medium-sized modpacks or plugin packs – up to 25 mods or plugins.
  • 4GB – includes most modpacks – up to 35-40 mods or plugins
  • 5-10GB – supports over 40 mods or plugins.
  • 15GB EX Series – for very large communities and extreme modpacks/ plugins.

Upgrade or downgrade your plan at anytime by choosing one of the most secured server hosting.

⇒ Get Apex MineCraft Hosting


Still having issues? Fix them with this tool:

SPONSORED

If the advices above haven’t solved your issue, your PC may experience deeper Windows problems. We recommend downloading this PC Repair tool (rated Great on TrustPilot.com) to easily address them. After installation, simply click the Start Scan button and then press on Repair All.

newsletter icon

Newsletter

Sometimes we get could not reserve enough space for object heap error when we run a java application. This is a JVM error occurs for the reasons listed below. Before diving deep into the topic lets understand JVM heap space first.

Understanding JVM heap space:

Limited memory is allocated in JVM to run a java application. The memory is specified during the startup of applications.

Read Also:  Java.net.ConnectException: Connection Refused

 -Xms is a VM option to specify heap memory. Heap size can be fixed or variable depending on the strategy of garbage collection. Maximum heap size can be specified by -Xmx option.

The main cause of heap memory error occurs for the following three reasons:

Reason 1:

If we run a java application without specifying memory we can get this kind of error.
The error should be like this.

Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.

Solution:

Most of the time this error occurs for 32 bit JVM. Because 32 bit JVM requires free space in memory to run the application but many times there is not enough memory to run java application.

We should replace 32 bit JVM with 64 bit JVM in a 64-bit computer to resolve this issue or we can specify memory to run the application by using below command

java -Xmx256M JavaApplication

Reason 2:

If we assign memory to 32 bit JVM greater than the heap size of the JVM, we can get this kind of error.

Suppose our JVM heap memory size is 2006M and we also assign the same size when we execute the program, we will get heap size error. For example, if we execute the following command, we will get
error in 32-bit JVM.

java -Xms2006M -Xmx2006M JavaApplication

Solution:

We should specify smaller memory as heap memory in 32 bit JVM as shown below or we should use 64 bit JVM

java -Xms1336M -Xmx1336M JavaApplication

Reason 3:

If we specify heap memory more than our physical memory, we will get this kind of error. Suppose we have 2GB ram but if we execute the following command we will get the error.

java -Xms8192M -Xmx8192M JavaApplication

Solution:

We can get rid of this error by specifying a smaller heap memory.

java -Xms1336M -Xmx1336M JavaApplication

Another way to resolve this issue, we should specify memory size in the _JAVA_OPTIONS variable in the path of the operation system. When we run the Java application it will take the memory size from the path. This path data should overcome the problems described above.

For Linux:

-bash-3.2$ export _JAVA_OPTIONS="-Xmx256M"
-bash-3.2$ javac JavaApplication.java

For Windows:

Follow the below path:
Start -> Control Panel -> System -> Advance(tab) -> Environment Vairables -> System Variables ->
Create  New Variable Name: _JAVA_OPTIONS -> Variable Value: -Xmx256M

Nowadays, 64 bit systems are available. We should avoid 32-bit hardware architecture and 32-bit java versions.

That’s all for today, please mention in comments in case you have any questions related to could not reserve enough space for object heap error.


  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    Mar 17, 2017

    Im attempting to run minecraft with these command prompts to allow the game to run with 2GB of ram (my PC has 8 in total) Yet the game thinks im trying to use over 2 million KB of ram (which is still roughly 2gb of ram) In case if you are wondering, yes i am using the old school minecraft launcher, i never updated because i cant. The new launcher also wont run on my PC even though a few months ago i was able to use 2gb of ram and the new launcher. i have no idea what is happening

    PC Specs

    GTX 950 SSC overclocked
    Intel Skylake i5 6500k 3.2 Ghz (quad core)
    Corsair 8gb ddr4 ram clocked at 3000mhz
    single Samsung ssd 255 GB
    single Microsoft 7200rpm 600gb HDD
    EVGA 600W 80+ Bronze certified
    1920×1080 Acer monitor
    Gigabyte motherboard (dont know which one)
    Windows 7 home premium


  • #2

    Mar 17, 2017


    urielsalis


    • View User Profile


    • View Posts


    • Send Message



    View urielsalis's Profile

    • Portal Expert
    • Join Date:

      9/28/2012
    • Posts:

      5,446
    • Minecraft:

      urielsalis
    • Member Details

    Im attempting to run minecraft with these command prompts to allow the game to run with 2GB of ram (my PC has 8 in total) Yet the game thinks im trying to use over 2 million KB of ram (which is still roughly 2gb of ram) In case if you are wondering, yes i am using the old school minecraft launcher, i never updated because i cant. The new launcher also wont run on my PC even though a few months ago i was able to use 2gb of ram and the new launcher. i have no idea what is happening

    PC Specs

    GTX 950 SSC overclocked
    Intel Skylake i5 6500k 3.2 Ghz (quad core)
    Corsair 8gb ddr4 ram clocked at 3000mhz
    single Samsung ssd 255 GB
    single Microsoft 7200rpm 600gb HDD
    EVGA 600W 80+ Bronze certified
    1920×1080 Acer monitor
    Gigabyte motherboard (dont know which one)
    Windows 7 home premium

    1) Dont allocate more RAM if you dont need it(for mdos or resource packs), it makes it worse
    2) Use -Xmx2G
    3) Its not exact, might be more or less due to java using some extra memory for some things

    Op in #minecrafthelp, JIRA Helper in bugs.mojang.com, Chat moderator in Minecraft Forums, Twitch/Mixer mod

    How to get a dxdiag

    If I helped you, dont forget to click the thanks arrow!


  • #3

    Mar 18, 2017

    #1 Im attempting to use quite a lot of mods, and im using shaders

    #2 ive already tried that, it still gives me the Could not reserve enough space for 2097152KB object heap error

    #3 i know its not exact, im not trying to be exact, Even then I still have 8gb of ram


  • #4

    Mar 18, 2017


    urielsalis


    • View User Profile


    • View Posts


    • Send Message



    View urielsalis's Profile

    • Portal Expert
    • Join Date:

      9/28/2012
    • Posts:

      5,446
    • Minecraft:

      urielsalis
    • Member Details

    You are using Java 32 bit or 64 bit? Does it crash without adding more RAM saying out of memory?

    Op in #minecrafthelp, JIRA Helper in bugs.mojang.com, Chat moderator in Minecraft Forums, Twitch/Mixer mod

    How to get a dxdiag

    If I helped you, dont forget to click the thanks arrow!


  • #5

    Mar 18, 2017

    i have java 64 bit, and yes it does if i play for 15 mins and my map doesnt save


  • #6

    Mar 18, 2017


    urielsalis


    • View User Profile


    • View Posts


    • Send Message



    View urielsalis's Profile

    • Portal Expert
    • Join Date:

      9/28/2012
    • Posts:

      5,446

    • Minecraft:

      urielsalis
    • Member Details

    It doesnt save? How you are closing it?

    Op in #minecrafthelp, JIRA Helper in bugs.mojang.com, Chat moderator in Minecraft Forums, Twitch/Mixer mod

    How to get a dxdiag

    If I helped you, dont forget to click the thanks arrow!


  • #7

    Mar 18, 2017

    The game runs out of memory and when i go back into the world, it only saves from the point to where i quit the game last time


  • #8

    Mar 18, 2017


    urielsalis


    • View User Profile


    • View Posts


    • Send Message



    View urielsalis's Profile

    • Portal Expert
    • Join Date:

      9/28/2012
    • Posts:

      5,446
    • Minecraft:

      urielsalis
    • Member Details

    Thats because its crashing

    Op in #minecrafthelp, JIRA Helper in bugs.mojang.com, Chat moderator in Minecraft Forums, Twitch/Mixer mod

    How to get a dxdiag

    If I helped you, dont forget to click the thanks arrow!


  • #11

    Mar 20, 2017

    I dont USE the new launcher, in my main post i stated this «In case if you are wondering, yes i am using the old school minecraft launcher, i never updated because i cant. The new launcher also wont run on my PC even though a few months ago i was able to use 2gb of ram and the new launcher. i have no idea what is happening» But for the second part of your question

    Error occurred during initialization of VM
    Could not reserve enough space for 2097152KB object heap
    Java HotSpot(TM) Client VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

    Thats it, that LITERALLY the entire log


  • #13

    Mar 25, 2017

    Well, after digging around more, i was able to get the full minecraft launcher, and there. It works


  • #14

    Mar 26, 2017


    urielsalis


    • View User Profile


    • View Posts


    • Send Message



    View urielsalis's Profile

    • Portal Expert
    • Join Date:

      9/28/2012
    • Posts:

      5,446
    • Minecraft:

      urielsalis
    • Member Details

    Well, after digging around more, i was able to get the full minecraft launcher, and there. It works

    Full minecraft launcher? What launcher were you using and what you are using now?

    Op in #minecrafthelp, JIRA Helper in bugs.mojang.com, Chat moderator in Minecraft Forums, Twitch/Mixer mod

    How to get a dxdiag

    If I helped you, dont forget to click the thanks arrow!

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes


Понравилась статья? Поделить с друзьями:
  • C14fe14 ошибка lexus
  • C10d018 ошибка вольво фмх
  • C10d018 ошибка вольво fmx
  • C1042 ошибка митсубиси
  • Could not find dayz executable ошибка что делать