Configure ODI 11g Local Agent:
Configure ODI 11g Local Agent:
Today we are going create and configure Local Agent in ODI 11g. So open your odi studio and proceed as per below screenshot.
Before doing any modification to the odiparams.bat file, take a backup of this. So that in case of any problem you can put this file again.
We need to change the value for below pointed line in the screenshot.
Just modify the bold values only but not others. Now open command prompt and go to ODI_HOME\oracledi\agent\bin.
For encoding master repository password in windows use "encode your_master_repo_pwd".
For unix use "sh encode.sh your_master_repo_pwd "
REM # Repository Connection Information
REM #
set ODI_MASTER_DRIVER=oracle.jdbc.OracleDriver
set ODI_MASTER_URL=jdbc:oracle:thin:@localhost:1521:xe
set ODI_MASTER_USER=ODI_MASTER1
set ODI_MASTER_ENCODED_PASS=bSyphW25OZr9ggsHRfvfy
REM #
REM # User credentials for agent startup program
REM #
set ODI_SUPERVISOR=SUPERVISOR
set ODI_SUPERVISOR_ENCODED_PASS=fJya.vR5kvNcu9TtV,jVZEt
REM #
REM # User credentials for ODI tools
REM #
set ODI_USER=%ODI_SUPERVISOR%
set ODI_ENCODED_PASS=%ODI_SUPERVISOR_ENCODED_PASS%
REM #
REM # Work Repository Name
REM #
set ODI_SECU_WORK_REP=WORKREP91_LOGON
Put the encoded password for ODI_MASTER_ENCODED_PASS. It should look like below screenshot.
Now go to ODI_Home\oracledi\agent\bin in command prompt and use below commands to start the agent
For unix
sh agent.sh -PORT=20910 -NAME=ODIAgent1
For windows
agent.bat "-PORT=20910″ "-NAME=ODIAgent1″
--