Installing Hyperion 11.1.2.1.0 on Windows Server 2008 R2 x64 (64Bit) Fails with win32 java errors :
Error:
Solution:
For some reason the x64 bit installer detects the Windows Server 2008R2 x64 as 32 bit, and looks for JRE within the 32-bit directory, which don't exist
Change the below line in the installTool.cmd
from
if "%PROCESSOR_ARCHITECTURE%" == "x86" (
set POSTED_JAVA=%dirname%\jre\win32\1.6.0
)
set POSTED_JAVA=%dirname%\jre\win32\1.6.0
)
to
if "%PROCESSOR_ARCHITECTURE%" == "x86" (
set POSTED_JAVA=%dirname%\jre\winAMD64\1.6.0
)
set POSTED_JAVA=%dirname%\jre\winAMD64\1.6.0
)
Re-run the installTool.cmd which will continue past this error now
No comments:
Post a Comment