Wednesday, February 25, 2015

Creating ODI 12c Colocated Agent Nodemanager as Windows Service in Windows 8

Creating ODI 12c Colocated Agent as Windows Service in Windows 8.

First we need to Configure Domain and Start the Weblogic services.
Then Create agent in Topology as OracleDIAgent1 & Portno: 20910
Then call agent using command line for first time to apply all agent sdk jar files.

Then Follow the below steps to install nodemanager as windows service.
Step1:
Goto  C:\ODI_12c\OracleHome\user_projects\domains\odi_domain\bin directory there we can find the installNodeMgrSvc.cmd













Step2:
Open CMD as Administrator user and Change directory to  Domain\bin directory
CD C:\ODI_12c\OracleHome\user_projects\domains\odi_domain\bin
call installNodeMgrSvc.cmd and it will create Windows service.









Step3:  Open Serices.msc file and here we can see service is created.















step4: Create  startColocated_Agent.cmd  file in C:\ODI_12c\Oracle_Home\user_projects\domains\odi_domain\bin directory
    SETLOCAL                                                                                                                                                                              

set DOMAIN_HOME=C:\ODI_12c\Oracle_Home\user_projects\domains\odi_domain

call %DOMAIN_HOME%\bin\startComponent.cmd OracleDIAgent1

ENDLOCAL
step5:  call that startColocated_Agent.cmd file and it will ask password for Nodemanager
Password: Admin123























Test the agent in Topology















step6: Stopping agent command script creation.

create below commands as cmd file as stopColocated_Agent.cmd

 C:\ODI_12c\Oracle_Home\user_projects\domains\odi_domain\bin



SETLOCAL

set DOMAIN_HOME=C:\ODI_12c\Oracle_Home\user_projects\domains\odi_domain

call %DOMAIN_HOME%\bin\agentstop.cmd -NAME=OracleDIAgent1

ENDLOCAL









No comments:

Post a Comment