Not Enough Memory Error when installing Vcenter 5.5

Discussions related to using VirtualBox on Mac OS X hosts.
Locked
RickyQuest
Posts: 1
Joined: 9. Dec 2013, 21:33

Not Enough Memory Error when installing Vcenter 5.5

Post by RickyQuest »

Im trying to install Vcenter 5.5 on a virtual box image of server 2008 R2 installed on a mac server. I get the error "Not enough system RAM simple install requires 4.000GB Of system memory. Amount of memory on system 0.0000 (0Bytes). I have given the server 8GB of ram???

Please Help.
mpack
Site Moderator
Posts: 39134
Joined: 4. Sep 2008, 17:09
Primary OS: MS Windows 10
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: Mostly XP

Re: Not Enough Memory Error when installing Vcenter 5.5

Post by mpack »

jdh239
Posts: 5
Joined: 17. Jan 2014, 03:06

Re: Not Enough Memory Error when installing Vcenter 5.5

Post by jdh239 »

Ever find a workaround for this? I am running into the exact same issue. W2k8R2 installed with 5+GB RAM, trying to install vcenter 5.5 (Simple method) and getting the exact same error. This is definitely a bug as it can easily be duplicated.
rpmurray
Volunteer
Posts: 918
Joined: 3. Mar 2009, 00:29
Primary OS: Mac OS X other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: Windows 7, Mac OS X (various flavors)
Location: Between Heaven and Hell

Re: Not Enough Memory Error when installing Vcenter 5.5

Post by rpmurray »

VM log file please. Minimum information needed for assistance.

Neither you nor the OP has provided a log file that would help in trying to diagnose the issue. That is definitely a file that can be easily attached to your post.
Toadster
Posts: 1
Joined: 12. Mar 2014, 18:59

Re: Not Enough Memory Error when installing Vcenter 5.5

Post by Toadster »

I had this problem as well using VirtualBox 4.3

it seems to be resolved when I upgraded to 4.3.8 today - thanks!
pvl
Posts: 1
Joined: 26. Mar 2014, 19:13

Re: Not Enough Memory Error when installing Vcenter 5.5

Post by pvl »

I have a solution to this problem, assuming you are willing to ignore the warning and proceed with the install with the system as-is.

You are trying to use the v5.5 installer to run a Simple Install. The interface to the installer is all based on HTML and Javascript.
The function that checks the amount of system memory is also Javascript and can be hacked.
Copy the entire contents of the install CD to a local folder - say, c:\installer.
In the root folder, you will find a folder called autorun (c:\installer\autorun).
Inside the autorun folder is a file called launcher.js.
Open this file in a text editor and find the function called checkSystemMemory.
Delete all the contents between the curly braces for this function except for the line "return true;".
So you have something like:

function checkSystemMemory(appReq)
{
return true;
}

Save the modified file. You have effectively disabled the test for amount of RAM made by the installer. The Simple Install should now run without error (assuming no other prereq is not met).

I'm not sure why the installer can't properly query VirtualBox for the system properties but at least this will get you past the check.
Cheers!
Ladan-M
Posts: 1
Joined: 5. Jul 2014, 11:56

Re: Not Enough Memory Error when installing Vcenter 5.5

Post by Ladan-M »

pvl wrote: I have a solution to this problem, assuming you are willing to ignore the warning and proceed with the install with the system as-is.
Thanks a lot PVL for sharing this work around. It worked like a charm for my test lab.... life saver :)
Locked