This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

EOS - modules installed today and STAT Agent is hanging periodically

We have installed EOS modules today on our STAT non-PROD environment.

We are seeing STAT Agent hanging after sometime. Did anyone run into this issue? and any recommendations to resolve the issue

Parents
  • Had a similar problem and I am thinking maybe your Stat EBS Agent JVM needs more memory. Check under STAT_HOME/bin file: statctl.sh. I increased the 2nd line below to correct my issue from -Xms256m -Xmx512m to the values list below. Restart the agent after making the change.

    ./java -DSTAT="$envCode" \
    -Xms512m -Xmx1024m \
    -Dconfigfile=$cfgFile \
    -Dcmdconfig="$cfgParams" \
    -DSTAT_HOME=$STAT_HOME \
    -Dfile.encoding=UTF-8 \
    com.quest.stat.oracle.OAStatAgent $envCode 2>&1 | tee -a $fatalLog &
Reply
  • Had a similar problem and I am thinking maybe your Stat EBS Agent JVM needs more memory. Check under STAT_HOME/bin file: statctl.sh. I increased the 2nd line below to correct my issue from -Xms256m -Xmx512m to the values list below. Restart the agent after making the change.

    ./java -DSTAT="$envCode" \
    -Xms512m -Xmx1024m \
    -Dconfigfile=$cfgFile \
    -Dcmdconfig="$cfgParams" \
    -DSTAT_HOME=$STAT_HOME \
    -Dfile.encoding=UTF-8 \
    com.quest.stat.oracle.OAStatAgent $envCode 2>&1 | tee -a $fatalLog &
Children
No Data