After Install Weblogic and BI On Windows, And Create Admin Server as Services BI_server unable to start, Node manager Created Service Created Without Any Error.
Cause & Solution :
After Investigation I found Class Path is too Long So what i did like the following, Edit installSVC.cmd To set Classpath to be Short
you will find the below line in the InstallSvc.cmd all you have to do is change it to be like Line in Red Color :
@echo off
echo %CLASSPATH% > %USERDOMAIN_HOME%\cp.properties
if “%ADMIN_URL%” == “” goto runAdmin
@echo on
set CMDLINE=”%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS%
-classpath @%USERDOMAIN_HOME%\cp.properties
-Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER%
-Dweblogic.management.server=\”%ADMIN_URL%\”
-Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE%
-Djava.security.policy=\”%WL_HOME%\server\lib\weblogic.policy\” weblogic.Server”
goto finish
Thank you
Osama Mustafa