KB Article #176414
starter.log log file in Integrator appended not overwritten
Problem
-- each time Integrator is restarted starter.log is overwritten;-- how can we append the log instead of overwrite it ?
Resolution
* two lines in $CORE_ROOT/Integrator script that is used to start/stop the product need to be modified.* it needs to modify "2>$STARTER_LOG" with "2>>$STARTER_LOG". After this the two modified lines should look like:
$CMD_SURVIVE "$CMD_STARTER $CMD_STARTER_OPTIONS" 2>>$STARTER_LOG 1>&2 &
$CMD_SURVIVE "$CMD_STARTER $CMD_STARTER_OPTIONS" 2>>$STARTER_LOG 1>&2