To set up WebLogic as a service in EPM 11.2 , create a batch file with the below code
echo off
SETLOCAL
set MW_HOME=\Oracle\Middleware\
set DOMAIN_NAME=<oracle_instance_name>
set USERDOMAIN_HOME=\Oracle\Middleware\user_projects\domains\EPMSystem
set SERVER_NAME=AdminServer
set WL_HOME=\Oracle\Middleware\wlserver
set PRODUCTION_MODE=true
set MEM_ARGS=-Xms512m -Xmx1024m
call "\Oracle\Middleware\user_projects\domains\EPMSystem\bin\setDomainEnv.cmd"
call "\Oracle\Middleware\wlserver\server\bin\installSvc.cmd"
ENDLOCAL
Save the above code as <filename>.bat and execute it to create a windows service for WebLogic.
You can adjust the path with respect to your server.

Comments
Post a Comment