본문 바로가기

ETL Tools/Oracle Data Integrator

ODI AGENT LOG MANAGEMENT



#!/bin/bash
# It used to run odi agent while it down.
# wangdj 2010-7-26
 
odi_agent_count=`ps -ef|grep pinglog_agent|grep odi|grep -v grep|wc -l`
if [ $odi_agent_count -ne 2 ]; then
   if [ $odi_agent_count -ne 1 ]; then
      . ~oracle/.odiprofile
      #ODI_HOME=/U01/app/oracle/product/odi/oracledi/ 
      #cd $ODI_HOME/bin/ 
      nohup $ODI_HOME/bin/agent.sh -PORT=29010 -NAME=pinglog_agent >> /tmp/odi_agent.log &
   fi
fi

Satine




$ODI_HOME/bin/agent.sh -PORT=29010 -NAME=pinglog_agent -v=3 > $ODI_HOME/bin/agent_log.txt


Cezar Santos - ...