Why... Why... Why?
This blog is dedicated to documenting error resolution and other tidbits that I discover while working as a Consultant in the Oracle EPM (Hyperion) field. As much of my job revolves around issue resolution, I see an opportunity to supplement the typical troubleshooting avenues such as the Oracle Knowledgebase and Oracle Forums with more pinpointed information about specific errors as they are encountered. Beware, the information found in this blog is for informational purposes only and comes without any warranty or guarantee of accuracy.

EPMVirt: Create your own Oracle Hyperion Virtual Environment:

Sunday, November 9, 2014

EPMVirt Debugging


For anyone needing assistance debugging the EPMvirt installation please run the following script to gather some debug info

Please run as the root user

#!/bin/sh
rm -f /tmp/epmvirt_logs.zip
rm -rf /tmp/epmvirt_debug/
mkdir /tmp/epmvirt_debug
ps -wwef > /tmp/epmvirt_debug/ps
env > /tmp/epmvirt_debug/env
tnsping HYPDB > /tmp/epmvirt_debug/tnsping
rpm -qa > /tmp/epmvirt_debug/rpm
df -h > /tmp/epmvirt_debug/df
free -m > /tmp/epmvirt_debug/free
zip /tmp/epmvirt_logs.zip /tmp/epmvirt_debug/* \
    /root/ks-post.log \
    /u0/Oracle/Middleware/user_projects/epmsystem1/diagnostics/logs/config \
    /u0/Oracle/Middleware/EPMSystem11R1/diagnostics/logs/install \
    /u0/automation/epm/installAll.log \
    /u0/app/oracle/admin/diag/rdbms/hypdb/HYPDB/trace/alert_HYPDB.log \
    /u0/automation/*.log \
    /u0/automation/database/*.log \
    /u0/automation/epm/*.log \
    /u0/automation/root/*.log 


The script will generate a file /tmp/epmvirt_logs.zip

Please email this log file to info@interopconsulting.com and I will take a closer look.

Thanks!

No comments:

Post a Comment