Quantcast
Channel: Hyperion Error of the Day
Viewing all 102 articles
Browse latest View live

EPM System Configurator Crashes During EPMA Configure Database

$
0
0

I just saw this one on the forums. Since I spent some time scratching my head on the issue and others are starting to see it I thought I would write it up...

In a patched 11.1.2.2 environment while configuring the EPMA database connection in config tool the config tool will crash.

In the configtool.log you would find:
[2013-01-30T11:34:00.420-05:00] [EPMCFG] [TRACE] [EPMCFG-01758] [oracle.EPMCFG] [tid: 16] [ecid: 0000JmCJgspEwGIFmrADS31H2KhK000003,0] [SRC_CLASS: com.hyperion.config.wizard.impl.DBConnectionForm] DB type is Oracle
[2013-01-30T11:34:00.420-05:00] [EPMCFG] [ERROR] [EPMCFG-01020] [oracle.EPMCFG] [tid: 16] [ecid: 0000JmCJgspEwGIFmrADS31H2KhK000003,0] [SRC_CLASS: com.hyperion.cis.config.Configurator] Error: [[
java.lang.NoClassDefFoundError: com/hyperion/cis/ISMPWizardServices
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:247)
at com.hyperion.cis.config.Configurator.loadClass(Configurator.java:172)
at com.hyperion.cis.config.Configurator.loadProductDBConfigurators(Configurator.java:201)
at com.hyperion.config.wizard.impl.DBWizardState$1.validate(DBWizardState.java:348)
at com.hyperion.hit.wizard.Wizard$NextClass.run(Wizard.java:531)
at java.lang.Thread.run(Thread.java:662)
Caused by: java.lang.ClassNotFoundException: com.hyperion.cis.ISMPWizardServices
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
... 7 more

]]



The reason is that the Oracle patch has broken the jar file AWBConfig.jar located
d:\oracle\Middleware\EPMSystem11R1\products\Foundation\BPMA\Common

The broken EPMA patch number is 14031912

There are missing classes in the patched , newer version of this jar

To fix the config tool you can make a copy of this existing jar and replace the older unpatched version. To find the old version search,
\oracle\Middleware\EPMSystem11R1\.patch_storage\ for AwbConfig.jar

To confirm this, look at the size of the current jar and the older jar - the new one is 158k and the old one was 317k - obviously the new one is missing some classes.

Once you are done with the config tool put the "newer" one back.


Browser Setting Recommendations for 11.1.2.2

$
0
0
I have been working with users facing strange issues in their browser for 11.1.2.2. These range from stuck "Loading..." prompts in Planning, Missing Arrows in Shared Services and disabled menus in DRM. This post will explain some recommended browser settings to prevent such issues.

The first main setting is to disable compatibility mode in Internet Explorer. This applies for both IE8 and IE9, though the steps are a slight bit different.

To make this harder - IE comes with a not well known default setting that automatically enables compatibility mode for intranet sites - where Hyperion typically resides. Looking carefully at the dialog box below see the option by default "Display intranet sites in Compatibility View". This should be unchecked for Hyperion! Hyperion will not work in Compatibility Mode.

Under Internet Explorer:
  Page -> Compatibility View Settings, Uncheck the box "Display intranet sites in Compatibility View".Here is an additional link to help for IE9 users to get the "Page" menu to display:
Disabling Compatibility Mode in IE9





Also, the following KB article has a ton of other recommended settings such as disabling popups, setting Hyperion as a trusted site, and lowering your security settings to allow specific functions:
      Oracle support Doc "Internet Explorer (IE7, IE8 and IE9) Recommended Settings for Oracle Hyperion Products [ID 820892.1]"

EPM Config Tool: The next hosts are unreachable.

$
0
0

When opening the config tool in 11.1.2.2 the utility actually tries to connect to every host in the EPM Registry. It show the error message if any hosts are unreachable.

I started down this path,

Checking closer it appears that the config tool uses the Java InetAddress isReachable() method.
Looking into the doc on the class,
http://docs.oracle.com/javase/6/docs/api/java/net/InetAddress.html


public boolean isReachable(int timeout)
throws IOException
Test whether that address is reachable. Best effort is made by the implementation to try to reach the host, but firewalls and server configuration may block requests resulting in a unreachable status while some specific ports may be accessible. A typical implementation will use ICMP ECHO REQUESTs if the privilege can be obtained, otherwise it will try to establish a TCP connection on port 7 (Echo) of the destination host.

I wrote up a simple test which confirmed the issue (Can't connect):

import java.net.InetAddress;
public class test
{
    public static void main(String[] args)
    throws Exception
    {

  
     InetAddress address =  InetAddress.getByName("hostname.fullyqualified.com");

     if (address == null) {
         System.out.println("Is null");
     }


     else if (! address.isReachable(3000)) {
         System.out.println("Cant connect");
     }

     else { 
         System.out.println("Host is reachable");
     }

     }


}


The host is pingable so ICMP traffic is being allowed. It's puzzling why the Java method cannot connect.

Further research on the web brings up some articles regarding why the isReachable method might fail, 
http://stackoverflow.com/questions/5126697/java-networking-issue

So this sort of pinpoints a firewall issue - Next I disabled the Windows Firewall - The method began working! 

About this time I came across John Goodwin's article while researching:
John had gone down almost the exact same path, written up nicely in his blog.

Final thoughts: 
  Why does Oracle introduce a new check in the config tool using a strange ICMP/TCP method that has nothing to do with the actual requirements of EPM? Crazy... Assuming you are implementing firewalls - you will need to include this as an additional requirement. 


Learning EPM - Level Up

$
0
0
I have been spending time lately focused on how to bring seasoned IT folks up to speed in Oracle EPM. I wanted to help identify specific levels of familiarity with EPM and help folks who are in one tier have resources to help go into more depth in their quest for EPM knowledge. The following post is a work in progress. The expectation is that a more polished version will eventually end up as part of a future presentation.

Levels of EPM Skills


Basic Operational Skills -
   
No expectation prior EPM knowledge
   This is good for the typical "on call" resource who is not specializing in EPM.
  1. Familiar with start and stop operations - specific to company
  2. Familiar with the architecture diagrams for each ENV - specific to company
  3. What's up and whats down - able to identify products that are not running and use the startup script to start or restart components - familiar with monitoring specific to company
Basic EPM Admin Skills
  1. Has logged in to each EPM server
  2. Has admin access to each product and has logged into each EPM module
  3. Familiar with EPM modules
    Knows the basic end user functionality of each EPM module
    Comfortable explaining end user interactions
    Can explain the importance of EPM regarding the business and why it is critical for good infrastructure support
  4. Knowledge of jobs which run in the environment - LCM exports, FDM loads, etc. - specific to company
  5. Ability to execute basic validation procedures to determine if the ENV is working as expected after planned maintenance or during issue resolution.
  6. Traversing the Oracle documentation - Read up!
    http://docs.oracle.com/cd/E17236_01/index.htm

    EPM Module Admin Guides
    example: http://docs.oracle.com/cd/E17236_01/epm.1112/esb_dbag.pdf
    EPM Module User Guides
    example: http://docs.oracle.com/cd/E17236_01/epm.1112/sv_user.pdf

    Infrastructure:
    -Support Matrix:   http://docs.oracle.com/cd/E17236_01/epm.1112/epm_install_start_here_1112200.pdf
    -Installation and Configuration
    http://docs.oracle.com/cd/E17236_01/epm.1112/epm_install_1112200.pdf
    -High Availability and Disaster Recovery
    http://docs.oracle.com/cd/E17236_01/epm.1112/epm_high_avail_11121.pdf
    -Security and SSL
    http://docs.oracle.com/cd/E17236_01/epm.1112/epm_security_11121.pdf
  7. Experience Installing and Configuring basic EPM environments
Intermediate EPM Skills
  1. Understands Opatch
    Can evaluate patch readme's
    Understands patch prerequisites and orders of patches
    Knows difference between patch sets vs one off patches.
    Understands where the patches should be applied - potentially 3 different places
       Product web
       Product app
       WebLogic admin node
  2. Understands implications of running config tool
     Resets registry heap settings
     Potentially wipes out custom changes
  3. Understands load balancing and SSL setup
    Key files:
       ssl.conf - basic SSL settings - defines location of wallet and SSL port
       mod_wl_ohs.conf - The Web->WebLogic forwarding
       httpd.conf - Web->IIS fowarding
    Files are auto generated when running web configuration in config tool - custom changes are blown away
  4. Knows what happens behind the scenes during the proces of deploying an application in config tool
  5. Can perform SSL certificate rotation based on predefined procedures
  6. Can perform password rotations
    a. database accounts
    b. EPM system accounts (admin, essadmin, jobs)
    c. windows DCOM account
  7. Familiar with oracle support - able to follow tickets from inception to resolution based on oracle's instructions.
  8. Knowledge of log files locations to troubleshoot issues.
Advanced Skills

  1. Can put together instructions for SSL implementation and rotation
  2. Can create architecture to implement high availability and the architecture can be tested to achieve high availability
  3. Create and refine DR process for EPM
  4. Troubleshooting
    Quickly understands interaction between products and can evaluate error messages from logs to quickly resolve issues
  5. Able to plan and implement a upgrade from one EPM version to another
  6. Begins to train others in the art of EPM infrastructure
EPM Guru (subjective)

  1. Ability to reach out and solve others problems
  2. Takes responsibility for infrastructure issues
  3. Multitasking - understands most EPM modules and is able to help on every front 
  4. Begins to see EPM at the "code" level - can start to evaluate why issues are occurring based on how the code is structured.
  5. Historical reference of EPM - watching EPM evolve over time and multiple versions can help bring invaluable context to situations.


Error Deploying Applications in Config Tool

$
0
0
When trying to deploy to application server, config tool crashes with "An unexpected error occurred and the application will have to shut down. Review the error log, correct the error condition and re-launch the application."

Inline image 1



The first thing to check is the config tool log. Digging into the log reveals,
[SRC_CLASS: com.hyperion.hit.wizard.Wizard] trace: Unexpected error:[[
java.lang.NullPointerException
at com.hyperion.hit.tool.deploy.utils.UIPortUtil.resetData(UIPortUtil.java:183)
at com.hyperion.hit.tool.deploy.utils.UIPortUtil.<init>(UIPortUtil.java:65)
at com.hyperion.hit.tool.deploy.utils.UIPortUtil.getInstance(UIPortUtil.java:48)
at com.hyperion.config.wizard.DeploymentField.getAppServerDeploymentData(DeploymentField.java:309)
at com.hyperion.config.wizard.DeploymentField.<init>(DeploymentField.java:70)
at com.hyperion.config.wizard.impl.DeploymentForm.<init>(DeploymentForm.java:57)
at com.hyperion.config.wizard.impl.DeploymentState.initializeBeforeShowOnNext(DeploymentState.java:58)
at com.hyperion.hit.wizard.Wizard$NextClass.run(Wizard.java:551)
at java.lang.Thread.run(Thread.java:662)
]]

Upon further investigation - this logic is basically trying to enumerate the logical web applications for each host. While iterating through the logical web applications, the config tool encounters a null value and crashes. The logical web applications are found in the Shared Services Registry. So I ran the registry-cleanup utility,

NOTE: The registry-cleanup utility has a high probability of corrupting your environment. Take a database backup of your Shared Services/Foundation schema before starting and be prepared to take downtime to restore the schema if required.
Essentially, the cleanup utility found some invalid entries to delete - so I removed them one at a time until the config tool worked again.

registry-cleanup.bat
Launching the Hyperion Registry Cleanup Utility, please wait...
Enter the password for Shared Services Database :
Reading rules XML file: \Oracle\Middleware\EPMSystem11R1\common\config\11.1.2.
0\resources\registry\cleanup\default-rules.xml
Found 6 rules

Looking for components matching rule: Remove components without parent HOST node
Processing results for rule: Remove components without parent HOST node

Do you really want to delete WORKSPACE_WEBAPP(WORKSPACE_WEBAPP):808d62cd746781a0
S201b96e113e13916fd3S6ae7 component?
Y - Yes
A - Yes, for all components matching this rule
N - No, skip this component
S - No, skip this and all the next components matching this rule
I - Show full component info
y
Deleting: WORKSPACE_WEBAPP(WORKSPACE_WEBAPP):808d62cd746781a0S201b96e113e13916fd
3S6ae7


This fixed the error in config tool.





Bug in 11.2.0.3 Oracle Client Installation Prevents HFM Configuration

$
0
0

The 11.2.0.3 version of the Oracle Client on Windows seems to have a unique bug where it has trouble registering the OLE DB provider in windows. This effects both HFM and FDM database configuration tasks. First, HFM will not pass configuring the db in the config tool. Second, FDM will not be able to create an application - throwing a very generic message saying check your database connection.

This essentially means that if you create a new UDL file manually, and look at the providers list, the Oracle Client provider is not shown.

The easiest way to see this issue, as mentioned above is to create a new text file, with zero bytes. Then rename it to test.udl. When you double click it should let you test the OLE DB connection. This is a good way to test any HFM DB related connection issue. However, if this bug exists, you will quickly discover that the Oracle provider is missing.

Please refer to this KB for more info:

Installing the 11.2.0.3 Oracle Provider for OLE DB from the Client Install Media Does Not Properly Register the Provider [ID 1380742.1]

For reference, the 64 bit (HFM) command to register the OLE DB would be

D:\>regsvr32 d:\oracle\product\11.2.0\client_2\bin\OraOLEDB11.dll

remember to refer to the KB article for the 32 bit command for FDM to work too.

Workspace (RA) Hangs when Implementing Firewall

$
0
0

Recently, I was implementing RA through a firewall. I discovered that Workspace would hang during login.

Looking through the logs I noticed some stuck threads in the RAFrameworkWeb logs,
which is more than the configured time (StuckThreadMaxTime) of "600"seconds. Stack trace:Thread-204 "[STUCK] ExecuteThread: '12' for queue: 'weblogic.kernel.Default (self-tuning)'"<alive, in native, suspended, priority=1, DAEMON> {   java.net.PlainSocketImpl.socketConnect(PlainSocketImpl.java:???)....java.lang.Class@10a184ba[thin lock]   com.sqribe.WS.WebSQRIBE.loginToRepository(Unknown Source)
This means something is unable to connect during RA initialization. 

Checking the Windows firewall for dropped packets (after configuring logging of dropped packets)

2013-10-10 23:15:43 DROP TCP xx.xx.xx.xx xx.xx.xx.xx 5613 32631 48 S 3865585991 0 8192 - - - RECEIVE


Apparently, some higher level ports are being blocked... What is process is being blocked?
I looked further at the netstat output to see what ports were LISTENING on the node, 

Netstat -a -n -o 
  TCP    0.0.0.0:6801           0.0.0.0:0              LISTENING       9256
  TCP    0.0.0.0:6802           0.0.0.0:0              LISTENING       9256
  TCP    0.0.0.0:6803           0.0.0.0:0              LISTENING       9256
  TCP    0.0.0.0:6804           0.0.0.0:0              LISTENING       9256
  TCP    0.0.0.0:6805           0.0.0.0:0              LISTENING       9256
  TCP    xx.xx.xx.xx:30298   0.0.0.0:0              LISTENING       9256
  TCP    xx.xx.xx.xx:30332   0.0.0.0:0              LISTENING       9256
  TCP    xx.xx.xx.xx:30365   0.0.0.0:0              LISTENING       9256
  TCP    xx.xx.xx.xx:30400   0.0.0.0:0              LISTENING       9256
  TCP    xx.xx.xx.xx:30437   0.0.0.0:0              LISTENING       9256
  TCP    xx.xx.xx.xx:30472   0.0.0.0:0              LISTENING       9256
  TCP    xx.xx.xx.xx:30507   0.0.0.0:0              LISTENING       9256
  TCP    xx.xx.xx.xx:30540   0.0.0.0:0              LISTENING       9256
  TCP    xx.xx.xx.xx:30575   0.0.0.0:0              LISTENING       9256
  TCP    xx.xx.xx.xx:30611   0.0.0.0:0              LISTENING       9256

  TCP    xx.xx.xx.xx:30646   0.0.0.0:0              LISTENING       9256

There are a ton of 30k+ ports that that RA is listening on. Obviously, these are not being allowed through the firewall. The 9256 column is the PID, but also the common 6800 , 6801 ports identify this as the RA Framework Services. What is causing these higher number ports? 

Finally, after some digging in the KB,
How to Change BI+ EPM Workspace to No Longer Use Dynamic Port Allocation for Logins to Properly Configure the Firewall to Allow Connections. (Doc ID 1483777.1)

Hyperion BI+ - Version 11.1.2.0.00 to 11.1.2.2.000 [Release 11.1]

How to change BI+ EPM Workspace to no longer use dynamic port allocation for logins so you can properly configure the firewall to allow connections.

FIX

 1. Login to Workspace click  Navigate -> Administer -> R&A -> Web Applications
      Right click on Reporting and Analysis Framework Web-Application -> Select Properties -> Internal
        Change Pass Data Using Streams Instead Of Files to No -> click OK

 2. Restart RaFramework Web


Also, there is a small blurb in the EPM doc about this if you look carefully,

RA Through Firewall


Automating the Daunting Task of Hyperion Database Password Changes

$
0
0

Disclaimer: This is information is for advanced level administrators. Please use at your own risk. 

This post is about changing the underlying database passwords that form the foundation of the Hyperion EPM environment. In Hyperion nearly every product has a corresponding database schema/user, depending on how the environment is setup. In my experience clients infrequently change these database passwords, if ever. Perhaps this is just lax security or maybe it is due to the daunting efforts involved in password changes. I'd like to show a different approach which might help make the process easier.

First, let's look at the typical process for changing database passwords.
  1. Change the HSS/Registry password:
    On EACH node in your environment:
    Open config tool on each node and given that the connection to HSS now fails, it will prompt you to re-enter the database credential to HSS registry from scratch. You will then need to run the "Foundation -> Configure database" configure task.
  2. For each EPM module with a database connection
    For instance: CalcMgr, Planning, HFM..etc
    Run the config tool and run the database configuration task for each module. Note: when updating it will prompt you to also redeploy the application server to update the WebLogic passwords. You would need to enter "perform first time configuration of database", make certain the schema in the drop down list is pointing at the correct DB for this module, and then it will prompt "would you like to reuse or drop". You need to correctly select "reuse" or risk erasing all your data.
  3. Update product specific passwords. There are some passwords which do not fit the mold described in 2. These are things like .UDL files for HFM, FDM Applications, Planning Applications. Each of these components will need evaluated and handled differently. 
The tasks in 1 and 2 can be readily automated.  In my opinion the steps in 1 and 2 are very time consuming and potentially risk prone if you make a mistake. I really like to avoid using config tool and redeploying as much as possible due to its buggy behavior. Let's re-evaluate what happens in step 1 and 2 and try to automate. The third step is harder since it depends based on the application, and perhaps not worth trying to automate.
  1. Changing the HSS Registry password consists of two parts. There is a reg.properties file which simply contains the JDBC connection details and is used when opening config tool. If config tool cannot connect to the HSS database, it will prompt to re-enter the DB info for the purpose of recreating the reg.properties file.
    The second part is updating the HSS registry with the correct DB HSS/Registry password.

    Consequently, the password is stored in the file system and in the database.

    Automation:
    The encrypted value for reg.properties is not possible to create outside of using config tool. So the first node you will need to open config tool and re-enter the database credentials, and run the "Foundation -> configure database" task. This creates a new reg.properties on this node and also updates the HSS password in the database (HSS registry). For automation, do not re-run this on each node, just copy the updated reg.properties to each node:
    copy d:\Oracle\Middleware\user_projects\epmsystem1\config\foundation\11.1.2.0\reg.properties \\server2\d$\Oracle\Middleware\user_projects\epmsystem1\config\foundation\11.1.2.0\reg.propertiescopy d:\Oracle\Middleware\user_projects\epmsystem1\config\foundation\11.1.2.0\reg.properties \\server3\d$\Oracle\Middleware\user_projects\epmsystem1\config\foundation\11.1.2.0\reg.properties ...
  2. Step two is updating the passwords for each EPM module. Behind the scenes this step has two parts. a) Updates EPM module password in the EPM System Registry. b) Redeploying the Application Server updates the JDBC connections in WebLogic Essentially, Oracle\Middleware\user_projects\domains\EPMSystem\config\jdbc Automation for a) The epmsys_registry tool can be used to change the HSS Registry connections. You can find a list of all the database connections stored in the registry by running epmsys_registry without any arguments to generate a registry report. Then search for DATABASE_CONN to identify the database connections. To change from the command line you can use this syntax:
    set SYSREG=D:\Oracle\Middleware\user_projects\epmsystem1\bin\epmsys_registry

    call %SYSREG% updateencryptedproperty SYSTEM9/FOUNDATION_SERVICES_PRODUCT/EPMA_PRODUCT/DATABASE_CONN/@dbPassword NewPassword
    ... Continue for each database connection. Remember, you can skip the EPMRegistry connection since you already updated this in step 1. Automation for b) WebLogic has a scripting language, WLST, which can be used to script the password change in WebLogic. To find the list of datasources which need modfied login to the WebLogic Admin console and look under the JDBC connections. Note: the list of connections does not necessarily match those in part a, above.
    WLST Script

    connect('epm_admin','','t3://wl_domain:7001')
    edit()
    startEdit()
    pass_aif = encrypt('NewPassword')

    dsName = 'aif_datasource'
    cd('/JDBCSystemResources/'+dsName+'/JDBCResource/'+dsName+'/JDBCDriverParams/'+dsName)
    set('PasswordEncrypted', pass_aif)

    save()
    activate()
Conclusion: 
The steps shown here can be prepared and scripted before the maintenance. This dramatically eliminates the time it takes to perform the maintenance since the time consuming steps are prepared up front and not being performed on demand when the environment is already down.

Testing the FDM 32-Bit Database Connection

$
0
0
I recently had some issues with FDM and suspected an issue with the database client setup. However, both the 32 bit and 64 bit Oracle clients were installed on the machine to support both FDM (32 bit) and HFM (64 bit). 

Specifically, I wanted to test the Windows OLE DB Oracle Driver connection, rather than relying on sqlplus to ensure the OLE DB connection was working with the Oracle client. The 11.2.0.3 Oracle client installer has a known bug where it fails to correctly register OLE DB. However, if I was to just create a simple test .UDL file using the Oracle OLE DB provider it would default to using the 64 bit Oracle client. How could I test the 32 bit client using a UDL file when both the 32 and 64 bit Oracle client is installed?

This blog article was very helpful:
http://blogs.msdn.com/b/chaitanya_medikonduri/archive/2008/04/09/how-to-run-32-bit-udl-file-on-a-64-bit-operating-system.aspx

Ultimately, this command was able to successfully test the 32 bit Oracle Client using Oracle's OLE DB provider: 
C:\Windows\system32>C:\WINDOWS\SysWOW64\Rundll32.exe "C:\Program Files (x86)\Common Files\System\Ole DB\oledb32.dll",OpenDSLFile c:\Windows\Temp\test.udl32

This post is a tad bit "in the weeds". However, FDM provides very little indication of what is actually going on when it fails to open. This might just be useful to verify all aspects of connectivity when troubleshooting.

Fun with the Hyperion Log Analysis Utility

$
0
0

 I was recently playing around with the Log Analysis tool on 11.1.2.2.

John Goodwin has a good write up of the basic operation of the log analysis utility here:
http://john-goodwin.blogspot.com/2013/09/epm-standalone-log-analysis-utility.html

After reviewing the tool, I was curious how to make it a bit more useful.

First, John seems to be pinpointing specific product log directories with the "-d" option. I am curious if it is possible to get more generic and just have the utility tell us what is wrong without specifying the product. This would be beneficial if an error is occurring in the system and you just want a quick report of what error messages might be coming out to help troubleshoot.

I tried very generically:
loganalysis.bat -system -tmin 60  -d d:\Oracle\Middleware\user_projects

However, this seemed to only get the logs in user_projects\epmsystem1\diagnostics. It was missing the Weblogic logs under user_projects\domains. These logs are important because they provide insight into what is happening at the web application server layer. To get more of a complete picture of the system, it is possible to generate a report for both the domains folder and the diagnostics folder. 
loganalysis.bat -system -tmin 60  -d d:\Oracle\Middleware\user_projects\domains -o domains_report
loganalysis.bat -system -tmin 60  -d d:\Oracle\Middleware\\user_projects\epmsystem1\diagnostics -o diagnostics_report


Now this is on the right track. The next issue is that the utility is only scanning a single node. In a distributed environment, this doesn't help the problem of having to log into multiple nodes to gather the logs. Digging a little deeper, it looks like UNC paths work well in the Log Analysis utility.
For instance,
loganalysis.bat -system -tmin 60 -d \\node1\d$\Oracle\Middleware\user_projects\epmsystem1\diagnostics -o node1_diagnostics

Using this information, it is possible to orchestrate reports for all nodes in the environment at the same time from a single node. When each report finishes it opens a html report as a tab in Internet Explorer for review. When completed the results are easily viewed by scanning through the multiple tabs in IE.

The final script to run reports for all nodes at once might look something like this:

set SEARCH_IN_MINS=60

start cmd /C "loganalysis.bat -system -tmin %SEARCH_IN_MINS% -d \\node1\d$\Oracle\Middleware\user_projects\domains -o web1_domains"
start cmd /C "loganalysis.bat -system -tmin %SEARCH_IN_MINS% -d \\node1\d$\Oracle\Middleware\user_projects\epmsystem1\diagnostics -o web1_diagnostics"

start cmd /C "loganalysis.bat -system -tmin %SEARCH_IN_MINS%  -d \\node2\d$\Oracle\Middleware\user_projects\domains -o web2_domains"
start cmd /C "loganalysis.bat -system -tmin %SEARCH_IN_MINS%  -d \\node2\d$\Oracle\Middleware\user_projects\epmsystem1\diagnostics -o web2_diagnostics"

start cmd /C "loganalysis.bat -system -tmin %SEARCH_IN_MINS%  -d \\node3\d$\Oracle\Middleware\user_projects\epmsystem1\diagnostics -o planning1_diagnostics"
start cmd /C "loganalysis.bat -system -tmin %SEARCH_IN_MINS%  -d \\node3\d$\Oracle\Middleware\user_projects\domains -o planning1_domains"

start cmd /C "loganalysis.bat -system -tmin %SEARCH_IN_MINS%  -d \\node4\d$\Oracle\Middleware\user_projects\epmsystem1\diagnostics -o planning2_diagnostics"
start cmd /C "loganalysis.bat -system -tmin %SEARCH_IN_MINS%  -d \\node4\d$\Oracle\Middleware\user_projects\domains -o planning2_domains"

....

I think this is infinity more useful. Much more useful than the single node, single product example. Next time Hyperion is down and everyone is scrambling looking for answers, this script might just be a quick way to discover the issue.

Some Bad Patches?

$
0
0

I recently came across a few bad patches.

Specifically, HSS 17537889, 11.1.2.2.303

In Shared Services, Application Groups, when trying to expand LCM for HFM applications (also with EPMA applications) SSL URLs will be appended with a :80, invalidating the URL.

EPMLCM-30034:Failed in communicating to Hyperion Financial Management remote service at URL https://servername:80/hfmlcmservice/LCMWS.asmx

Note the https protocol with the :80 appended to the end. The patch cannot form SSL URL's properly. This was confirmed by rolling back the patch and seeing the URLs form properly.


Additionally, HFM 11.1.2.2.306 & 307 cause certain Financial Reports to Fail against HFM. The error in HFM is:
File: CDQISource.cpp Version: 11.1.2.2.306.4365 Line: 6408 Error: (-3)(0xFFFFFFFD)(An unknown error occurred. (-3))

Specifically, looking at the .307 Readme, under known issues:
· 18528346 – Financial reports using ‘Base of Current POV for entity’ is not working with conditional suppression.
I think there are broader issues with FR and HFM in this patch that only occur with certain report options in FR.
I suspect these two issues also reside in the 11.1.2.2.500 patch set because it was released before Oracle fixed these issues.

Windows WebLogic Servies Fail to Start - Trouble Encrypting boot.properties

$
0
0
I have run across this error a few times and have finally gotten around to documenting it. The issue occurs typically after a multi node Hyperion installation and all the WebLogic managed servers not residing on the WebLogic domain fail to start up. Essentially, you start the WebLogic service, and after a minute it shuts down. Looking into the WebLogic managed server log files: 


java.lang.AssertionError: java.lang.reflect.InvocationTargetException
at weblogic.descriptor.DescriptorManager$SecurityServiceImpl$SecurityProxy._invokeServiceMethod(DescriptorManager.java:175)
at weblogic.descriptor.DescriptorManager$SecurityServiceImpl$SecurityProxy.decrypt(DescriptorManager.java:192)
at weblogic.descriptor.DescriptorManager$SecurityServiceImpl.decrypt(DescriptorManager.java:114)
at weblogic.descriptor.internal.AbstractDescriptorBean._decrypt(AbstractDescriptorBean.java:1092)
at weblogic.management.configuration.SecurityConfigurationMBeanImpl.getCredential(SecurityConfigurationMBeanImpl.java:737)
at weblogic.security.internal.ServerPrincipalValidatorImpl.getSecret(ServerPrincipalValidatorImpl.java:88)
at weblogic.security.internal.ServerPrincipalValidatorImpl.sign(ServerPrincipalValidatorImpl.java:67)
at weblogic.security.service.PrivilegedActions$SignPrincipalAction.run(PrivilegedActions.java:62)
at weblogic.security.service.SecurityServiceManager.createServerID(SecurityServiceManager.java:1098)
at weblogic.security.service.SecurityServiceManager.getServerID(SecurityServiceManager.java:1109)
at weblogic.security.service.SecurityServiceManager.sendASToWire(SecurityServiceManager.java:600)
at weblogic.server.channels.ChannelService.resetQOS(ChannelService.java:296)
at weblogic.server.channels.ChannelService.start(ChannelService.java:258)
at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

Caused By: weblogic.security.internal.encryption.EncryptionServiceException
at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptBytes(JSafeEncryptionServiceImpl.java:139)
at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptString(JSafeEncryptionServiceImpl.java:187)
at weblogic.security.internal.encryption.ClearOrEncryptedService.decrypt(ClearOrEncryptedService.java:96)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at weblogic.descriptor.DescriptorManager$SecurityServiceImpl$SecurityProxy._invokeServiceMethod(DescriptorManager.java:173)
at weblogic.descriptor.DescriptorManager$SecurityServiceImpl$SecurityProxy.decrypt(DescriptorManager.java:192)
at weblogic.descriptor.DescriptorManager$SecurityServiceImpl.decrypt(DescriptorManager.java:114)
at weblogic.descriptor.internal.AbstractDescriptorBean._decrypt(AbstractDescriptorBean.java:1092)
at weblogic.management.configuration.SecurityConfigurationMBeanImpl.getCredential(SecurityConfigurationMBeanImpl.java:737)
at weblogic.security.internal.ServerPrincipalValidatorImpl.getSecret(ServerPrincipalValidatorImpl.java:88)
at weblogic.security.internal.ServerPrincipalValidatorImpl.sign(ServerPrincipalValidatorImpl.java:67)
at weblogic.security.service.PrivilegedActions$SignPrincipalAction.run(PrivilegedActions.java:63)
at weblogic.security.service.SecurityServiceManager.createServerID(SecurityServiceManager.java:1098)
at weblogic.security.service.SecurityServiceManager.getServerID(SecurityServiceManager.java:1109)
at weblogic.security.service.SecurityServiceManager.sendASToWire(SecurityServiceManager.java:600)
at weblogic.server.channels.ChannelService.resetQOS(ChannelService.java:296)
at weblogic.server.channels.ChannelService.start(ChannelService.java:258)
at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)


WebLogic is trying to read the boot.properties file in order to get the credentials to startup the managed server. However, it appears it needs to contact the WebLogic Domain in order to properly encrypt the boot.properties. You would also see the failed connection to the WebLogic Domain in the logs:

<Aug 2, 2014 6:52:04 AM UTC> <Emergency> <Management> <BEA-141151> <The admin server could not be reached at http://wldomain:7001.>
<Aug 2, 2014 6:52:04 AM UTC> <Info> <Configuration Management> <BEA-150018> <This server is being started in managed server independence mode in the absence of the admin server.>

Having a look at the boot.properties file it looks like the password has not been encrypted, hence the EncryptionServiceException. It is trying to read what it thinks is the encrypted password but the password is plain text, causing the exception. 

C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\RaFramework0\security\boot.properties
#
#Fri Aug 01 05:06:31 UTC 2014
password=epm_admin
username=mypassword


So the question is how to get the Managed Server to properly contact the WebLogic domain to encrypt the boot.properties file. 

I usually do this by starting it from the command line, 

cd C:\Oracle\Middleware\user_projects\domains\EPMSystem\bin
startManagedWeblogic.cmd RaFramework1 http://wldomain:7001

Note, the second argument is the WebLogic Domain URL. 

While starting up, assuming the Managed Server is able to connect to the domain you will see:

<Aug 2, 2014 6:57:37 AM UTC> <Notice> <Security> <BEA-090083> <Storing boot identity in the file: C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\RaFramework1\security\boot.properties>

This is a good indication that the problem has been resolved. Looking in the boot.properties you should see the encrypted password.

This approach is what I find best for debugging. Additionally, the startup parameters for starting the WebLogic managed server as a Windows service are in the Windows Registry. Specifically for Hyperion there is a JVMOption for setting the WL Domain server. Make sure that this is set correctly when starting as a Windows service. "-Dweblogic.management.server=http://wldomain:7001"

I'm Presenting at Oracle Open World

EPMVirt - Step 3: Install EPMVirt RPM

$
0
0

EPM Virtual Environment Intro
Step 1: Download Required Software
Step 2: Create Virtual Oracle Linux Instance
Step 3: Install EPMVirt RPM
Step 4: Copy Downloads to Virtual Machine

Step 3: Install EPMVirt RPM

ETA for this step: 30 minutes (waiting for RPM dependencies to download/install)

The following steps will install the custom EPMVirt RPM. During installation the RPM will resolve and update rpm packages required for Oracle RDBMS and Oracle EPM. It will then apply some customization to the node such as:
  1) install the oracle user and groups
  2) setup a /u0 file system with custom scripts for building Oracle Database and EPM.
  3) establish a location for the downloaded files, /u0/install/downloads


At this point you must have internet connectivity in order to download required RPMs for the system. The EPMVirt project is hosted on sourceforge.net, https://sourceforge.net/projects/epmvirt.

To quickly install the EPMVirt RPM, use the Shortened download link to sourceforge:
[root@localhost ~]# curl -L http://goo.gl/S649zQ -o EPMVirt.rpm

The shortened URL is a link to download this RPM:
https://sourceforge.net/projects/epmvirt/files/11.1.2.3.0%20EPM%20Virtual%20Env/

Next, install the rpm that was downloaded above:
[root@localhost ~]# yum install -y EPMVirt.rpm


Sample Output:Setting up Install Process
Examining EPMVirt.rpm: epmvirt-11.1.2.3.0-1.x86_64
Marking EPMVirt.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package epmvirt.x86_64 0:11.1.2.3.0-1 will be installed
--> Processing Dependency: /lib/libgcc_s.so.1 for package: epmvirt-11.1.2.3.0-1.x86_64
public_ol6_UEKR3_latest/filelists                                                                                                               | 5.7 MB     00:03
public_ol6_latest/filelists                                                                                                                     |  45 MB     00:30
--> Processing Dependency: /usr/lib/libg.a for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: /usr/lib/libnss_compat.so for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: /usr/lib/libstdc++.so.5 for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: /usr/lib/libstdc++.so.6 for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: /usr/lib64/libnsl.so for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: /usr/lib64/libstdc++.so.5 for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: compat-libcap1 for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: emacs for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: gcc for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: gcc-c++ for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: ksh for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: libaio for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: libaio-devel for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: libstdc++-devel for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: lsof for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: sysstat for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: unzip for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: xauth for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: xdpyinfo for package: epmvirt-11.1.2.3.0-1.x86_64
--> Processing Dependency: zip for package: epmvirt-11.1.2.3.0-1.x86_64
--> Running transaction check
---> Package compat-libcap1.x86_64 0:1.10-1 will be installed
---> Package compat-libstdc++-33.i686 0:3.2.3-69.el6 will be installed
--> Processing Dependency: libc.so.6(GLIBC_2.2) for package: compat-libstdc++-33-3.2.3-69.el6.i686
--> Processing Dependency: libc.so.6(GLIBC_2.0) for package: compat-libstdc++-33-3.2.3-69.el6.i686
--> Processing Dependency: libc.so.6(GLIBC_2.3) for package: compat-libstdc++-33-3.2.3-69.el6.i686
--> Processing Dependency: libc.so.6(GLIBC_2.1) for package: compat-libstdc++-33-3.2.3-69.el6.i686
--> Processing Dependency: libm.so.6 for package: compat-libstdc++-33-3.2.3-69.el6.i686
--> Processing Dependency: libc.so.6(GLIBC_2.1.3) for package: compat-libstdc++-33-3.2.3-69.el6.i686
--> Processing Dependency: libc.so.6 for package: compat-libstdc++-33-3.2.3-69.el6.i686
---> Package compat-libstdc++-33.x86_64 0:3.2.3-69.el6 will be installed
---> Package emacs.x86_64 1:23.1-25.el6 will be installed
--> Processing Dependency: emacs-common = 1:23.1-25.el6 for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libasound.so.2(ALSA_0.9)(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: desktop-file-utils for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libasound.so.2(ALSA_0.9.0rc4)(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libpng12.so.0(PNG12_0)(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: librsvg2 for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: m17n-db-datafiles for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libjpeg.so.62(LIBJPEG_6.2)(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libgtk-x11-2.0.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libm17n-flt.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libICE.so.6()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libpangoft2-1.0.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libfreetype.so.6()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libcairo.so.2()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libXrender.so.1()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libasound.so.2()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libatk-1.0.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libm17n-core.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libotf.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libgdk-x11-2.0.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libjpeg.so.62()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libSM.so.6()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libpangocairo-1.0.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libgif.so.4()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libXpm.so.4()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libX11.so.6()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: librsvg-2.so.2()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libpango-1.0.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libXft.so.2()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libtiff.so.3()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libfontconfig.so.1()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
--> Processing Dependency: libpng12.so.0()(64bit) for package: 1:emacs-23.1-25.el6.x86_64
---> Package gcc.x86_64 0:4.4.7-11.el6 will be installed
--> Processing Dependency: libgomp = 4.4.7-11.el6 for package: gcc-4.4.7-11.el6.x86_64
--> Processing Dependency: cpp = 4.4.7-11.el6 for package: gcc-4.4.7-11.el6.x86_64
--> Processing Dependency: cloog-ppl >= 0.15 for package: gcc-4.4.7-11.el6.x86_64
--> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-4.4.7-11.el6.x86_64
---> Package gcc-c++.x86_64 0:4.4.7-11.el6 will be installed
--> Processing Dependency: libmpfr.so.1()(64bit) for package: gcc-c++-4.4.7-11.el6.x86_64
---> Package glibc-devel.i686 0:2.12-1.149.el6 will be installed
--> Processing Dependency: glibc-headers = 2.12-1.149.el6 for package: glibc-devel-2.12-1.149.el6.i686
--> Processing Dependency: glibc-headers for package: glibc-devel-2.12-1.149.el6.i686
---> Package glibc-devel.x86_64 0:2.12-1.149.el6 will be installed
---> Package ksh.x86_64 0:20120801-21.el6.1 will be installed
---> Package libaio.x86_64 0:0.3.107-10.el6 will be installed
---> Package libaio-devel.x86_64 0:0.3.107-10.el6 will be installed
---> Package libgcc.x86_64 0:4.4.7-4.el6 will be updated
---> Package libgcc.i686 0:4.4.7-11.el6 will be installed
---> Package libgcc.x86_64 0:4.4.7-11.el6 will be an update
---> Package libstdc++.x86_64 0:4.4.7-4.el6 will be updated
---> Package libstdc++.i686 0:4.4.7-11.el6 will be installed
---> Package libstdc++.x86_64 0:4.4.7-11.el6 will be an update
---> Package libstdc++-devel.x86_64 0:4.4.7-11.el6 will be installed
---> Package lsof.x86_64 0:4.82-4.el6 will be installed
---> Package sysstat.x86_64 0:9.0.4-27.el6 will be installed
---> Package unzip.x86_64 0:6.0-1.el6 will be installed
---> Package xorg-x11-utils.x86_64 0:7.5-6.el6 will be installed
--> Processing Dependency: libXinerama.so.1()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
--> Processing Dependency: libxcb.so.1()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
--> Processing Dependency: libxcb-shape.so.0()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
--> Processing Dependency: libXxf86misc.so.1()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
--> Processing Dependency: libXi.so.6()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
--> Processing Dependency: libdmx.so.1()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
--> Processing Dependency: libXtst.so.6()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
--> Processing Dependency: libXxf86dga.so.1()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
--> Processing Dependency: libXxf86vm.so.1()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
--> Processing Dependency: libXv.so.1()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
--> Processing Dependency: libXext.so.6()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
---> Package xorg-x11-xauth.x86_64 1:1.0.2-7.1.el6 will be installed
--> Processing Dependency: libXmuu.so.1()(64bit) for package: 1:xorg-x11-xauth-1.0.2-7.1.el6.x86_64
--> Processing Dependency: libXau.so.6()(64bit) for package: 1:xorg-x11-xauth-1.0.2-7.1.el6.x86_64
---> Package zip.x86_64 0:3.0-1.el6 will be installed
--> Running transaction check
---> Package alsa-lib.x86_64 0:1.0.22-3.el6 will be installed
---> Package atk.x86_64 0:1.30.0-1.el6 will be installed
---> Package cairo.x86_64 0:1.8.8-3.1.el6 will be installed
--> Processing Dependency: libpixman-1.so.0()(64bit) for package: cairo-1.8.8-3.1.el6.x86_64
---> Package cloog-ppl.x86_64 0:0.15.7-1.2.el6 will be installed
--> Processing Dependency: libppl_c.so.2()(64bit) for package: cloog-ppl-0.15.7-1.2.el6.x86_64
--> Processing Dependency: libppl.so.7()(64bit) for package: cloog-ppl-0.15.7-1.2.el6.x86_64
---> Package cpp.x86_64 0:4.4.7-11.el6 will be installed
---> Package desktop-file-utils.x86_64 0:0.15-9.el6 will be installed
---> Package emacs-common.x86_64 1:23.1-25.el6 will be installed
--> Processing Dependency: perl >= 1:5 for package: 1:emacs-common-23.1-25.el6.x86_64
--> Processing Dependency: perl(vars) for package: 1:emacs-common-23.1-25.el6.x86_64
--> Processing Dependency: perl(Getopt::Long) for package: 1:emacs-common-23.1-25.el6.x86_64
--> Processing Dependency: /usr/bin/perl for package: 1:emacs-common-23.1-25.el6.x86_64
--> Processing Dependency: perl(strict) for package: 1:emacs-common-23.1-25.el6.x86_64
---> Package fontconfig.x86_64 0:2.8.0-5.el6 will be installed
---> Package freetype.x86_64 0:2.3.11-14.el6_3.1 will be installed
---> Package gdk-pixbuf2.x86_64 0:2.24.1-5.el6 will be installed
--> Processing Dependency: libjasper.so.1()(64bit) for package: gdk-pixbuf2-2.24.1-5.el6.x86_64
---> Package giflib.x86_64 0:4.1.6-3.1.el6 will be installed
---> Package glibc.x86_64 0:2.12-1.132.el6 will be updated
--> Processing Dependency: glibc = 2.12-1.132.el6 for package: glibc-common-2.12-1.132.el6.x86_64
---> Package glibc.i686 0:2.12-1.149.el6 will be installed
--> Processing Dependency: libfreebl3.so for package: glibc-2.12-1.149.el6.i686
--> Processing Dependency: libfreebl3.so(NSSRAWHASH_3.12.3) for package: glibc-2.12-1.149.el6.i686
---> Package glibc.x86_64 0:2.12-1.149.el6 will be an update
---> Package glibc-headers.x86_64 0:2.12-1.149.el6 will be installed
--> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.12-1.149.el6.x86_64
--> Processing Dependency: kernel-headers for package: glibc-headers-2.12-1.149.el6.x86_64
---> Package gtk2.x86_64 0:2.24.23-6.el6 will be installed
--> Processing Dependency: libXrandr >= 1.2.99.4-2 for package: gtk2-2.24.23-6.el6.x86_64
--> Processing Dependency: glib2 >= 2.28.0-1 for package: gtk2-2.24.23-6.el6.x86_64
--> Processing Dependency: hicolor-icon-theme for package: gtk2-2.24.23-6.el6.x86_64
--> Processing Dependency: libXcursor.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
--> Processing Dependency: libXrandr.so.2()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
--> Processing Dependency: libXcomposite.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
--> Processing Dependency: libXdamage.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
--> Processing Dependency: libXfixes.so.3()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
--> Processing Dependency: libcups.so.2()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
---> Package libICE.x86_64 0:1.0.6-1.el6 will be installed
---> Package libSM.x86_64 0:1.2.1-2.el6 will be installed
---> Package libX11.x86_64 0:1.6.0-2.2.el6 will be installed
--> Processing Dependency: libX11-common = 1.6.0-2.2.el6 for package: libX11-1.6.0-2.2.el6.x86_64
---> Package libXau.x86_64 0:1.0.6-4.el6 will be installed
---> Package libXext.x86_64 0:1.3.2-2.1.el6 will be installed
---> Package libXft.x86_64 0:2.3.1-2.el6 will be installed
---> Package libXi.x86_64 0:1.7.2-2.2.el6 will be installed
---> Package libXinerama.x86_64 0:1.1.3-2.1.el6 will be installed
---> Package libXmu.x86_64 0:1.1.1-2.el6 will be installed
--> Processing Dependency: libXt.so.6()(64bit) for package: libXmu-1.1.1-2.el6.x86_64
---> Package libXpm.x86_64 0:3.5.10-2.el6 will be installed
---> Package libXrender.x86_64 0:0.9.8-2.1.el6 will be installed
---> Package libXtst.x86_64 0:1.2.2-2.1.el6 will be installed
---> Package libXv.x86_64 0:1.0.9-2.1.el6 will be installed
---> Package libXxf86dga.x86_64 0:1.1.4-2.1.el6 will be installed
---> Package libXxf86misc.x86_64 0:1.0.3-4.el6 will be installed
---> Package libXxf86vm.x86_64 0:1.1.3-2.1.el6 will be installed
---> Package libdmx.x86_64 0:1.1.3-3.el6 will be installed
---> Package libgomp.x86_64 0:4.4.7-11.el6 will be installed
---> Package libjpeg-turbo.x86_64 0:1.2.1-3.el6_5 will be installed
---> Package libotf.x86_64 0:0.9.9-3.1.el6 will be installed
--> Processing Dependency: libXaw.so.7()(64bit) for package: libotf-0.9.9-3.1.el6.x86_64
---> Package libpng.x86_64 2:1.2.49-1.el6_2 will be installed
---> Package librsvg2.x86_64 0:2.26.0-14.el6 will be installed
--> Processing Dependency: libgsf >= 1.6.0 for package: librsvg2-2.26.0-14.el6.x86_64
--> Processing Dependency: libcroco-0.6.so.3()(64bit) for package: librsvg2-2.26.0-14.el6.x86_64
--> Processing Dependency: libgsf-1.so.114()(64bit) for package: librsvg2-2.26.0-14.el6.x86_64
---> Package libtiff.x86_64 0:3.9.4-10.el6_5 will be installed
---> Package libxcb.x86_64 0:1.9.1-2.el6 will be installed
---> Package m17n-db-datafiles.noarch 0:1.5.5-1.1.el6 will be installed
--> Processing Dependency: m17n-db = 1.5.5-1.1.el6 for package: m17n-db-datafiles-1.5.5-1.1.el6.noarch
---> Package m17n-lib.x86_64 0:1.5.5-2.el6_1.1 will be installed
---> Package mpfr.x86_64 0:2.4.1-6.el6 will be installed
---> Package pango.x86_64 0:1.28.1-10.0.1.el6 will be installed
--> Processing Dependency: libthai >= 0.1.9 for package: pango-1.28.1-10.0.1.el6.x86_64
--> Processing Dependency: libthai.so.0(LIBTHAI_0.1)(64bit) for package: pango-1.28.1-10.0.1.el6.x86_64
--> Processing Dependency: libthai.so.0()(64bit) for package: pango-1.28.1-10.0.1.el6.x86_64
--> Running transaction check
---> Package cups-libs.x86_64 1:1.4.2-67.el6 will be installed
--> Processing Dependency: libgnutls.so.26(GNUTLS_1_4)(64bit) for package: 1:cups-libs-1.4.2-67.el6.x86_64
--> Processing Dependency: libavahi-common.so.3()(64bit) for package: 1:cups-libs-1.4.2-67.el6.x86_64
--> Processing Dependency: libgnutls.so.26()(64bit) for package: 1:cups-libs-1.4.2-67.el6.x86_64
--> Processing Dependency: libavahi-client.so.3()(64bit) for package: 1:cups-libs-1.4.2-67.el6.x86_64
---> Package glib2.x86_64 0:2.26.1-3.el6 will be updated
---> Package glib2.x86_64 0:2.28.8-4.el6 will be an update
---> Package glibc-common.x86_64 0:2.12-1.132.el6 will be updated
---> Package glibc-common.x86_64 0:2.12-1.149.el6 will be an update
---> Package hicolor-icon-theme.noarch 0:0.11-1.1.el6 will be installed
---> Package jasper-libs.x86_64 0:1.900.1-15.el6_1.1 will be installed
---> Package kernel-uek-headers.x86_64 0:3.8.13-26.2.4.el6uek will be installed
---> Package libX11-common.noarch 0:1.6.0-2.2.el6 will be installed
---> Package libXaw.x86_64 0:1.0.11-2.el6 will be installed
---> Package libXcomposite.x86_64 0:0.4.3-4.el6 will be installed
---> Package libXcursor.x86_64 0:1.1.14-2.1.el6 will be installed
---> Package libXdamage.x86_64 0:1.1.3-4.el6 will be installed
---> Package libXfixes.x86_64 0:5.0.1-2.1.el6 will be installed
---> Package libXrandr.x86_64 0:1.4.1-2.1.el6 will be installed
---> Package libXt.x86_64 0:1.1.4-6.1.el6 will be installed
---> Package libcroco.x86_64 0:0.6.2-5.el6 will be installed
---> Package libgsf.x86_64 0:1.14.15-5.el6 will be installed
--> Processing Dependency: GConf2 for package: libgsf-1.14.15-5.el6.x86_64
---> Package libthai.x86_64 0:0.1.12-3.el6 will be installed
---> Package m17n-db.noarch 0:1.5.5-1.1.el6 will be installed
---> Package nss-softokn-freebl.x86_64 0:3.14.3-9.el6 will be updated
---> Package nss-softokn-freebl.i686 0:3.14.3-17.el6 will be installed
---> Package nss-softokn-freebl.x86_64 0:3.14.3-17.el6 will be an update
---> Package perl.x86_64 4:5.10.1-136.el6 will be installed
--> Processing Dependency: perl-libs = 4:5.10.1-136.el6 for package: 4:perl-5.10.1-136.el6.x86_64
--> Processing Dependency: perl-libs for package: 4:perl-5.10.1-136.el6.x86_64
--> Processing Dependency: perl(Module::Pluggable) for package: 4:perl-5.10.1-136.el6.x86_64
--> Processing Dependency: perl(version) for package: 4:perl-5.10.1-136.el6.x86_64
--> Processing Dependency: perl(Pod::Simple) for package: 4:perl-5.10.1-136.el6.x86_64
--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.10.1-136.el6.x86_64
---> Package pixman.x86_64 0:0.32.4-4.el6 will be installed
---> Package ppl.x86_64 0:0.10.2-11.el6 will be installed
--> Running transaction check
---> Package GConf2.x86_64 0:2.28.0-6.el6 will be installed
--> Processing Dependency: sgml-common for package: GConf2-2.28.0-6.el6.x86_64
--> Processing Dependency: dbus for package: GConf2-2.28.0-6.el6.x86_64
--> Processing Dependency: libpolkit-gobject-1.so.0()(64bit) for package: GConf2-2.28.0-6.el6.x86_64
--> Processing Dependency: libORBit-2.so.0()(64bit) for package: GConf2-2.28.0-6.el6.x86_64
---> Package avahi-libs.x86_64 0:0.6.25-15.el6 will be installed
---> Package gnutls.x86_64 0:2.8.5-14.el6_5 will be installed
---> Package perl-Module-Pluggable.x86_64 1:3.90-136.el6 will be installed
---> Package perl-Pod-Simple.x86_64 1:3.13-136.el6 will be installed
--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.13-136.el6.x86_64
---> Package perl-libs.x86_64 4:5.10.1-136.el6 will be installed
---> Package perl-version.x86_64 3:0.77-136.el6 will be installed
--> Running transaction check
---> Package ORBit2.x86_64 0:2.14.17-5.el6 will be installed
--> Processing Dependency: libIDL-2.so.0()(64bit) for package: ORBit2-2.14.17-5.el6.x86_64
---> Package dbus.x86_64 1:1.2.24-7.0.1.el6_3 will be installed
---> Package perl-Pod-Escapes.x86_64 1:1.04-136.el6 will be installed
---> Package polkit.x86_64 0:0.96-7.el6 will be installed
--> Processing Dependency: ConsoleKit for package: polkit-0.96-7.el6.x86_64
--> Processing Dependency: libeggdbus-1.so.0()(64bit) for package: polkit-0.96-7.el6.x86_64
---> Package sgml-common.noarch 0:0.6.3-33.el6 will be installed
--> Running transaction check
---> Package ConsoleKit.x86_64 0:0.4.1-3.el6 will be installed
--> Processing Dependency: libck-connector.so.0()(64bit) for package: ConsoleKit-0.4.1-3.el6.x86_64
---> Package eggdbus.x86_64 0:0.6-3.el6 will be installed
---> Package libIDL.x86_64 0:0.8.13-2.1.el6 will be installed
--> Running transaction check
---> Package ConsoleKit-libs.x86_64 0:0.4.1-3.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=======================================================================================================================================================================
 Package                                    Arch                        Version                                     Repository                                    Size
=======================================================================================================================================================================
Installing:
 epmvirt                                    x86_64                      11.1.2.3.0-1                                /EPMVirt                                     122 k
Installing for dependencies:
 ConsoleKit                                 x86_64                      0.4.1-3.el6                                 public_ol6_latest                             81 k
 ConsoleKit-libs                            x86_64                      0.4.1-3.el6                                 public_ol6_latest                             17 k
 GConf2                                     x86_64                      2.28.0-6.el6                                public_ol6_latest                            963 k
 ORBit2                                     x86_64                      2.14.17-5.el6                               public_ol6_latest                            168 k
 alsa-lib                                   x86_64                      1.0.22-3.el6                                public_ol6_latest                            370 k
 atk                                        x86_64                      1.30.0-1.el6                                public_ol6_latest                            195 k
 avahi-libs                                 x86_64                      0.6.25-15.el6                               public_ol6_latest                             54 k
 cairo                                      x86_64                      1.8.8-3.1.el6                               public_ol6_latest                            309 k
 cloog-ppl                                  x86_64                      0.15.7-1.2.el6                              public_ol6_latest                             93 k
 compat-libcap1                             x86_64                      1.10-1                                      public_ol6_latest                             17 k
 compat-libstdc++-33                        i686                        3.2.3-69.el6                                public_ol6_latest                            188 k
 compat-libstdc++-33                        x86_64                      3.2.3-69.el6                                public_ol6_latest                            183 k
 cpp                                        x86_64                      4.4.7-11.el6                                public_ol6_latest                            3.7 M
 cups-libs                                  x86_64                      1:1.4.2-67.el6                              public_ol6_latest                            319 k
 dbus                                       x86_64                      1:1.2.24-7.0.1.el6_3                        public_ol6_latest                            207 k
 desktop-file-utils                         x86_64                      0.15-9.el6                                  public_ol6_latest                             46 k
 eggdbus                                    x86_64                      0.6-3.el6                                   public_ol6_latest                             90 k
 emacs                                      x86_64                      1:23.1-25.el6                               public_ol6_latest                            2.2 M
 emacs-common                               x86_64                      1:23.1-25.el6                               public_ol6_latest                             18 M
 fontconfig                                 x86_64                      2.8.0-5.el6                                 public_ol6_latest                            185 k
 freetype                                   x86_64                      2.3.11-14.el6_3.1                           public_ol6_latest                            359 k
 gcc                                        x86_64                      4.4.7-11.el6                                public_ol6_latest                             10 M
 gcc-c++                                    x86_64                      4.4.7-11.el6                                public_ol6_latest                            4.7 M
 gdk-pixbuf2                                x86_64                      2.24.1-5.el6                                public_ol6_latest                            500 k
 giflib                                     x86_64                      4.1.6-3.1.el6                               public_ol6_latest                             36 k
 glibc                                      i686                        2.12-1.149.el6                              public_ol6_latest                            4.3 M
 glibc-devel                                i686                        2.12-1.149.el6                              public_ol6_latest                            982 k
 glibc-devel                                x86_64                      2.12-1.149.el6                              public_ol6_latest                            982 k
 glibc-headers                              x86_64                      2.12-1.149.el6                              public_ol6_latest                            610 k
 gnutls                                     x86_64                      2.8.5-14.el6_5                              public_ol6_latest                            345 k
 gtk2                                       x86_64                      2.24.23-6.el6                               public_ol6_latest                            3.2 M
 hicolor-icon-theme                         noarch                      0.11-1.1.el6                                public_ol6_latest                             40 k
 jasper-libs                                x86_64                      1.900.1-15.el6_1.1                          public_ol6_latest                            136 k
 kernel-uek-headers                         x86_64                      3.8.13-26.2.4.el6uek                        public_ol6_UEKR3_latest                      986 k
 ksh                                        x86_64                      20120801-21.el6.1                           public_ol6_latest                            758 k
 libICE                                     x86_64                      1.0.6-1.el6                                 public_ol6_latest                             52 k
 libIDL                                     x86_64                      0.8.13-2.1.el6                              public_ol6_latest                             82 k
 libSM                                      x86_64                      1.2.1-2.el6                                 public_ol6_latest                             36 k
 libX11                                     x86_64                      1.6.0-2.2.el6                               public_ol6_latest                            586 k
 libX11-common                              noarch                      1.6.0-2.2.el6                               public_ol6_latest                            191 k
 libXau                                     x86_64                      1.0.6-4.el6                                 public_ol6_latest                             24 k
 libXaw                                     x86_64                      1.0.11-2.el6                                public_ol6_latest                            178 k
 libXcomposite                              x86_64                      0.4.3-4.el6                                 public_ol6_latest                             20 k
 libXcursor                                 x86_64                      1.1.14-2.1.el6                              public_ol6_latest                             27 k
 libXdamage                                 x86_64                      1.1.3-4.el6                                 public_ol6_latest                             18 k
 libXext                                    x86_64                      1.3.2-2.1.el6                               public_ol6_latest                             34 k
 libXfixes                                  x86_64                      5.0.1-2.1.el6                               public_ol6_latest                             16 k
 libXft                                     x86_64                      2.3.1-2.el6                                 public_ol6_latest                             54 k
 libXi                                      x86_64                      1.7.2-2.2.el6                               public_ol6_latest                             36 k
 libXinerama                                x86_64                      1.1.3-2.1.el6                               public_ol6_latest                             12 k
 libXmu                                     x86_64                      1.1.1-2.el6                                 public_ol6_latest                             65 k
 libXpm                                     x86_64                      3.5.10-2.el6                                public_ol6_latest                             50 k
 libXrandr                                  x86_64                      1.4.1-2.1.el6                               public_ol6_latest                             23 k
 libXrender                                 x86_64                      0.9.8-2.1.el6                               public_ol6_latest                             23 k
 libXt                                      x86_64                      1.1.4-6.1.el6                               public_ol6_latest                            164 k
 libXtst                                    x86_64                      1.2.2-2.1.el6                               public_ol6_latest                             18 k
 libXv                                      x86_64                      1.0.9-2.1.el6                               public_ol6_latest                             16 k
 libXxf86dga                                x86_64                      1.1.4-2.1.el6                               public_ol6_latest                             17 k
 libXxf86misc                               x86_64                      1.0.3-4.el6                                 public_ol6_latest                             17 k
 libXxf86vm                                 x86_64                      1.1.3-2.1.el6                               public_ol6_latest                             16 k
 libaio                                     x86_64                      0.3.107-10.el6                              public_ol6_latest                             21 k
 libaio-devel                               x86_64                      0.3.107-10.el6                              public_ol6_latest                             13 k
 libcroco                                   x86_64                      0.6.2-5.el6                                 public_ol6_latest                             99 k
 libdmx                                     x86_64                      1.1.3-3.el6                                 public_ol6_latest                             14 k
 libgcc                                     i686                        4.4.7-11.el6                                public_ol6_latest                            113 k
 libgomp                                    x86_64                      4.4.7-11.el6                                public_ol6_latest                            132 k
 libgsf                                     x86_64                      1.14.15-5.el6                               public_ol6_latest                            115 k
 libjpeg-turbo                              x86_64                      1.2.1-3.el6_5                               public_ol6_latest                            174 k
 libotf                                     x86_64                      0.9.9-3.1.el6                               public_ol6_latest                             79 k
 libpng                                     x86_64                      2:1.2.49-1.el6_2                            public_ol6_latest                            181 k
 librsvg2                                   x86_64                      2.26.0-14.el6                               public_ol6_latest                            140 k
 libstdc++                                  i686                        4.4.7-11.el6                                public_ol6_latest                            301 k
 libstdc++-devel                            x86_64                      4.4.7-11.el6                                public_ol6_latest                            1.6 M
 libthai                                    x86_64                      0.1.12-3.el6                                public_ol6_latest                            182 k
 libtiff                                    x86_64                      3.9.4-10.el6_5                              public_ol6_latest                            342 k
 libxcb                                     x86_64                      1.9.1-2.el6                                 public_ol6_latest                            109 k
 lsof                                       x86_64                      4.82-4.el6                                  public_ol6_latest                            319 k
 m17n-db                                    noarch                      1.5.5-1.1.el6                               public_ol6_latest                             41 k
 m17n-db-datafiles                          noarch                      1.5.5-1.1.el6                               public_ol6_latest                            717 k
 m17n-lib                                   x86_64                      1.5.5-2.el6_1.1                             public_ol6_latest                            157 k
 mpfr                                       x86_64                      2.4.1-6.el6                                 public_ol6_latest                            156 k
 nss-softokn-freebl                         i686                        3.14.3-17.el6                               public_ol6_latest                            153 k
 pango                                      x86_64                      1.28.1-10.0.1.el6                           public_ol6_latest                            351 k
 perl                                       x86_64                      4:5.10.1-136.el6                            public_ol6_latest                             10 M
 perl-Module-Pluggable                      x86_64                      1:3.90-136.el6                              public_ol6_latest                             39 k
 perl-Pod-Escapes                           x86_64                      1:1.04-136.el6                              public_ol6_latest                             32 k
 perl-Pod-Simple                            x86_64                      1:3.13-136.el6                              public_ol6_latest                            211 k
 perl-libs                                  x86_64                      4:5.10.1-136.el6                            public_ol6_latest                            577 k
 perl-version                               x86_64                      3:0.77-136.el6                              public_ol6_latest                             50 k
 pixman                                     x86_64                      0.32.4-4.el6                                public_ol6_latest                            242 k
 polkit                                     x86_64                      0.96-7.el6                                  public_ol6_latest                            160 k
 ppl                                        x86_64                      0.10.2-11.el6                               public_ol6_latest                            1.3 M
 sgml-common                                noarch                      0.6.3-33.el6                                public_ol6_latest                             42 k
 sysstat                                    x86_64                      9.0.4-27.el6                                public_ol6_latest                            232 k
 unzip                                      x86_64                      6.0-1.el6                                   public_ol6_latest                            149 k
 xorg-x11-utils                             x86_64                      7.5-6.el6                                   public_ol6_latest                             94 k
 xorg-x11-xauth                             x86_64                      1:1.0.2-7.1.el6                             public_ol6_latest                             34 k
 zip                                        x86_64                      3.0-1.el6                                   public_ol6_latest                            259 k
Updating for dependencies:
 glib2                                      x86_64                      2.28.8-4.el6                                public_ol6_latest                            1.7 M
 glibc                                      x86_64                      2.12-1.149.el6                              public_ol6_latest                            3.8 M
 glibc-common                               x86_64                      2.12-1.149.el6                              public_ol6_latest                             14 M
 libgcc                                     x86_64                      4.4.7-11.el6                                public_ol6_latest                            101 k
 libstdc++                                  x86_64                      4.4.7-11.el6                                public_ol6_latest                            294 k
 nss-softokn-freebl                         x86_64                      3.14.3-17.el6                               public_ol6_latest                            163 k

Transaction Summary
=======================================================================================================================================================================
Install      99 Package(s)
Upgrade       6 Package(s)

Total size: 97 M
Total download size: 96 M
Downloading Packages:
(1/104): ConsoleKit-0.4.1-3.el6.x86_64.rpm                                                                                                      |  81 kB     00:00
(2/104): ConsoleKit-libs-0.4.1-3.el6.x86_64.rpm                                                                                                 |  17 kB     00:00
(3/104): GConf2-2.28.0-6.el6.x86_64.rpm                                                                                                         | 963 kB     00:00
(4/104): ORBit2-2.14.17-5.el6.x86_64.rpm                                                                                                        | 168 kB     00:00
(5/104): alsa-lib-1.0.22-3.el6.x86_64.rpm                                                                                                       | 370 kB     00:00
(6/104): atk-1.30.0-1.el6.x86_64.rpm                                                                                                            | 195 kB     00:00
(7/104): avahi-libs-0.6.25-15.el6.x86_64.rpm                                                                                                    |  54 kB     00:00
(8/104): cairo-1.8.8-3.1.el6.x86_64.rpm                                                                                                         | 309 kB     00:00
(9/104): cloog-ppl-0.15.7-1.2.el6.x86_64.rpm                                                                                                    |  93 kB     00:00
(10/104): compat-libcap1-1.10-1.x86_64.rpm                                                                                                      |  17 kB     00:00
(11/104): compat-libstdc++-33-3.2.3-69.el6.i686.rpm                                                                                             | 188 kB     00:00
(12/104): compat-libstdc++-33-3.2.3-69.el6.x86_64.rpm                                                                                           | 183 kB     00:00
(13/104): cpp-4.4.7-11.el6.x86_64.rpm                                                                                                           | 3.7 MB     00:13
(14/104): cups-libs-1.4.2-67.el6.x86_64.rpm                                                                                                     | 319 kB     00:00
(15/104): dbus-1.2.24-7.0.1.el6_3.x86_64.rpm                                                                                                    | 207 kB     00:00
(16/104): desktop-file-utils-0.15-9.el6.x86_64.rpm                                                                                              |  46 kB     00:00
(17/104): eggdbus-0.6-3.el6.x86_64.rpm                                                                                                          |  90 kB     00:00
(18/104): emacs-23.1-25.el6.x86_64.rpm                                                                                                          | 2.2 MB     00:10
(19/104): emacs-common-23.1-25.el6.x86_64.rpm                                                                                                   |  18 MB     00:17
(20/104): fontconfig-2.8.0-5.el6.x86_64.rpm                                                                                                     | 185 kB     00:00
(21/104): freetype-2.3.11-14.el6_3.1.x86_64.rpm                                                                                                 | 359 kB     00:01
(22/104): gcc-4.4.7-11.el6.x86_64.rpm                                                                                                           |  10 MB     00:06
(23/104): gcc-c++-4.4.7-11.el6.x86_64.rpm                                                                                                       | 4.7 MB     00:03
(24/104): gdk-pixbuf2-2.24.1-5.el6.x86_64.rpm                                                                                                   | 500 kB     00:00
(25/104): giflib-4.1.6-3.1.el6.x86_64.rpm                                                                                                       |  36 kB     00:00
(26/104): glib2-2.28.8-4.el6.x86_64.rpm                                                                                                         | 1.7 MB     00:01
(27/104): glibc-2.12-1.149.el6.i686.rpm                                                                                                         | 4.3 MB     00:02
(28/104): glibc-2.12-1.149.el6.x86_64.rpm                                                                                                       | 3.8 MB     00:02
(29/104): glibc-common-2.12-1.149.el6.x86_64.rpm                                                                                                |  14 MB     00:09
(30/104): glibc-devel-2.12-1.149.el6.i686.rpm                                                                                                   | 982 kB     00:00
(31/104): glibc-devel-2.12-1.149.el6.x86_64.rpm                                                                                                 | 982 kB     00:00
(32/104): glibc-headers-2.12-1.149.el6.x86_64.rpm                                                                                               | 610 kB     00:00
(33/104): gnutls-2.8.5-14.el6_5.x86_64.rpm                                                                                                      | 345 kB     00:00
(34/104): gtk2-2.24.23-6.el6.x86_64.rpm                                                                                                         | 3.2 MB     00:02
(35/104): hicolor-icon-theme-0.11-1.1.el6.noarch.rpm                                                                                            |  40 kB     00:00
(36/104): jasper-libs-1.900.1-15.el6_1.1.x86_64.rpm                                                                                             | 136 kB     00:00
(37/104): kernel-uek-headers-3.8.13-26.2.4.el6uek.x86_64.rpm                                                                                    | 986 kB     00:00
(38/104): ksh-20120801-21.el6.1.x86_64.rpm                                                                                                      | 758 kB     00:00
(39/104): libICE-1.0.6-1.el6.x86_64.rpm                                                                                                         |  52 kB     00:00
(40/104): libIDL-0.8.13-2.1.el6.x86_64.rpm                                                                                                      |  82 kB     00:00
(41/104): libSM-1.2.1-2.el6.x86_64.rpm                                                                                                          |  36 kB     00:00
(42/104): libX11-1.6.0-2.2.el6.x86_64.rpm                                                                                                       | 586 kB     00:00
(43/104): libX11-common-1.6.0-2.2.el6.noarch.rpm                                                                                                | 191 kB     00:00
(44/104): libXau-1.0.6-4.el6.x86_64.rpm                                                                                                         |  24 kB     00:00
(45/104): libXaw-1.0.11-2.el6.x86_64.rpm                                                                                                        | 178 kB     00:00
(46/104): libXcomposite-0.4.3-4.el6.x86_64.rpm                                                                                                  |  20 kB     00:00
(47/104): libXcursor-1.1.14-2.1.el6.x86_64.rpm                                                                                                  |  27 kB     00:00
(48/104): libXdamage-1.1.3-4.el6.x86_64.rpm                                                                                                     |  18 kB     00:00
(49/104): libXext-1.3.2-2.1.el6.x86_64.rpm                                                                                                      |  34 kB     00:00
(50/104): libXfixes-5.0.1-2.1.el6.x86_64.rpm                                                                                                    |  16 kB     00:00
(51/104): libXft-2.3.1-2.el6.x86_64.rpm                                                                                                         |  54 kB     00:00
(52/104): libXi-1.7.2-2.2.el6.x86_64.rpm                                                                                                        |  36 kB     00:00
(53/104): libXinerama-1.1.3-2.1.el6.x86_64.rpm                                                                                                  |  12 kB     00:00
(54/104): libXmu-1.1.1-2.el6.x86_64.rpm                                                                                                         |  65 kB     00:00
(55/104): libXpm-3.5.10-2.el6.x86_64.rpm                                                                                                        |  50 kB     00:00
(56/104): libXrandr-1.4.1-2.1.el6.x86_64.rpm                                                                                                    |  23 kB     00:00
(57/104): libXrender-0.9.8-2.1.el6.x86_64.rpm                                                                                                   |  23 kB     00:00
(58/104): libXt-1.1.4-6.1.el6.x86_64.rpm                                                                                                        | 164 kB     00:00
(59/104): libXtst-1.2.2-2.1.el6.x86_64.rpm                                                                                                      |  18 kB     00:00
(60/104): libXv-1.0.9-2.1.el6.x86_64.rpm                                                                                                        |  16 kB     00:00
(61/104): libXxf86dga-1.1.4-2.1.el6.x86_64.rpm                                                                                                  |  17 kB     00:00
(62/104): libXxf86misc-1.0.3-4.el6.x86_64.rpm                                                                                                   |  17 kB     00:00
(63/104): libXxf86vm-1.1.3-2.1.el6.x86_64.rpm                                                                                                   |  16 kB     00:00
(64/104): libaio-0.3.107-10.el6.x86_64.rpm                                                                                                      |  21 kB     00:00
(65/104): libaio-devel-0.3.107-10.el6.x86_64.rpm                                                                                                |  13 kB     00:00
(66/104): libcroco-0.6.2-5.el6.x86_64.rpm                                                                                                       |  99 kB     00:00
(67/104): libdmx-1.1.3-3.el6.x86_64.rpm                                                                                                         |  14 kB     00:00
(68/104): libgcc-4.4.7-11.el6.i686.rpm                                                                                                          | 113 kB     00:00
(69/104): libgcc-4.4.7-11.el6.x86_64.rpm                                                                                                        | 101 kB     00:00
(70/104): libgomp-4.4.7-11.el6.x86_64.rpm                                                                                                       | 132 kB     00:00
(71/104): libgsf-1.14.15-5.el6.x86_64.rpm                                                                                                       | 115 kB     00:00
(72/104): libjpeg-turbo-1.2.1-3.el6_5.x86_64.rpm                                                                                                | 174 kB     00:00
(73/104): libotf-0.9.9-3.1.el6.x86_64.rpm                                                                                                       |  79 kB     00:00
(74/104): libpng-1.2.49-1.el6_2.x86_64.rpm                                                                                                      | 181 kB     00:00
(75/104): librsvg2-2.26.0-14.el6.x86_64.rpm                                                                                                     | 140 kB     00:00
(76/104): libstdc++-4.4.7-11.el6.i686.rpm                                                                                                       | 301 kB     00:00
(77/104): libstdc++-4.4.7-11.el6.x86_64.rpm                                                                                                     | 294 kB     00:00
(78/104): libstdc++-devel-4.4.7-11.el6.x86_64.rpm                                                                                               | 1.6 MB     00:01
(79/104): libthai-0.1.12-3.el6.x86_64.rpm                                                                                                       | 182 kB     00:00
(80/104): libtiff-3.9.4-10.el6_5.x86_64.rpm                                                                                                     | 342 kB     00:00
(81/104): libxcb-1.9.1-2.el6.x86_64.rpm                                                                                                         | 109 kB     00:00
(82/104): lsof-4.82-4.el6.x86_64.rpm                                                                                                            | 319 kB     00:00
(83/104): m17n-db-1.5.5-1.1.el6.noarch.rpm                                                                                                      |  41 kB     00:00
(84/104): m17n-db-datafiles-1.5.5-1.1.el6.noarch.rpm                                                                                            | 717 kB     00:00
(85/104): m17n-lib-1.5.5-2.el6_1.1.x86_64.rpm                                                                                                   | 157 kB     00:00
(86/104): mpfr-2.4.1-6.el6.x86_64.rpm                                                                                                           | 156 kB     00:00
(87/104): nss-softokn-freebl-3.14.3-17.el6.i686.rpm                                                                                             | 153 kB     00:00
(88/104): nss-softokn-freebl-3.14.3-17.el6.x86_64.rpm                                                                                           | 163 kB     00:00
(89/104): pango-1.28.1-10.0.1.el6.x86_64.rpm                                                                                                    | 351 kB     00:00
(90/104): perl-5.10.1-136.el6.x86_64.rpm                                                                                                        |  10 MB     00:11
(91/104): perl-Module-Pluggable-3.90-136.el6.x86_64.rpm                                                                                         |  39 kB     00:00
(92/104): perl-Pod-Escapes-1.04-136.el6.x86_64.rpm                                                                                              |  32 kB     00:00
(93/104): perl-Pod-Simple-3.13-136.el6.x86_64.rpm                                                                                               | 211 kB     00:00
(94/104): perl-libs-5.10.1-136.el6.x86_64.rpm                                                                                                   | 577 kB     00:00
(95/104): perl-version-0.77-136.el6.x86_64.rpm                                                                                                  |  50 kB     00:00
(96/104): pixman-0.32.4-4.el6.x86_64.rpm                                                                                                        | 242 kB     00:00
(97/104): polkit-0.96-7.el6.x86_64.rpm                                                                                                          | 160 kB     00:00
(98/104): ppl-0.10.2-11.el6.x86_64.rpm                                                                                                          | 1.3 MB     00:01
(99/104): sgml-common-0.6.3-33.el6.noarch.rpm                                                                                                   |  42 kB     00:00
(100/104): sysstat-9.0.4-27.el6.x86_64.rpm                                                                                                      | 232 kB     00:00
(101/104): unzip-6.0-1.el6.x86_64.rpm                                                                                                           | 149 kB     00:00
(102/104): xorg-x11-utils-7.5-6.el6.x86_64.rpm                                                                                                  |  94 kB     00:00
(103/104): xorg-x11-xauth-1.0.2-7.1.el6.x86_64.rpm                                                                                              |  34 kB     00:00
(104/104): zip-3.0-1.el6.x86_64.rpm                                                                                                             | 259 kB     00:00
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                                                  833 kB/s |  96 MB     01:58
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Updating   : libgcc-4.4.7-11.el6.x86_64                                                                                                                        1/111
  Updating   : nss-softokn-freebl-3.14.3-17.el6.x86_64                                                                                                           2/111
  Updating   : glibc-common-2.12-1.149.el6.x86_64                                                                                                                3/111
  Updating   : glibc-2.12-1.149.el6.x86_64                                                                                                                       4/111
  Updating   : glib2-2.28.8-4.el6.x86_64                                                                                                                         5/111
  Installing : freetype-2.3.11-14.el6_3.1.x86_64                                                                                                                 6/111
  Installing : fontconfig-2.8.0-5.el6.x86_64                                                                                                                     7/111
  Updating   : libstdc++-4.4.7-11.el6.x86_64                                                                                                                     8/111
  Installing : 1:perl-Pod-Escapes-1.04-136.el6.x86_64                                                                                                            9/111
  Installing : 1:perl-Module-Pluggable-3.90-136.el6.x86_64                                                                                                      10/111
  Installing : 3:perl-version-0.77-136.el6.x86_64                                                                                                               11/111
  Installing : 1:perl-Pod-Simple-3.13-136.el6.x86_64                                                                                                            12/111
  Installing : 4:perl-libs-5.10.1-136.el6.x86_64                                                                                                                13/111
  Installing : 4:perl-5.10.1-136.el6.x86_64                                                                                                                     14/111
  Installing : 2:libpng-1.2.49-1.el6_2.x86_64                                                                                                                   15/111
  Installing : libjpeg-turbo-1.2.1-3.el6_5.x86_64                                                                                                               16/111
  Installing : libICE-1.0.6-1.el6.x86_64                                                                                                                        17/111
  Installing : libSM-1.2.1-2.el6.x86_64                                                                                                                         18/111
  Installing : 1:dbus-1.2.24-7.0.1.el6_3.x86_64                                                                                                                 19/111
  Installing : libtiff-3.9.4-10.el6_5.x86_64                                                                                                                    20/111
  Installing : atk-1.30.0-1.el6.x86_64                                                                                                                          21/111
  Installing : libstdc++-devel-4.4.7-11.el6.x86_64                                                                                                              22/111
  Installing : mpfr-2.4.1-6.el6.x86_64                                                                                                                          23/111
  Installing : libXau-1.0.6-4.el6.x86_64                                                                                                                        24/111
  Installing : libxcb-1.9.1-2.el6.x86_64                                                                                                                        25/111
  Installing : libaio-0.3.107-10.el6.x86_64                                                                                                                     26/111
  Installing : m17n-db-1.5.5-1.1.el6.noarch                                                                                                                     27/111
  Installing : m17n-db-datafiles-1.5.5-1.1.el6.noarch                                                                                                           28/111
  Installing : m17n-lib-1.5.5-2.el6_1.1.x86_64                                                                                                                  29/111
  Installing : libaio-devel-0.3.107-10.el6.x86_64                                                                                                               30/111
  Installing : cpp-4.4.7-11.el6.x86_64                                                                                                                          31/111
  Installing : ConsoleKit-libs-0.4.1-3.el6.x86_64                                                                                                               32/111
  Installing : jasper-libs-1.900.1-15.el6_1.1.x86_64                                                                                                            33/111
  Installing : 1:emacs-common-23.1-25.el6.x86_64                                                                                                                34/111
  Installing : gnutls-2.8.5-14.el6_5.x86_64                                                                                                                     35/111
  Installing : ppl-0.10.2-11.el6.x86_64                                                                                                                         36/111
  Installing : cloog-ppl-0.15.7-1.2.el6.x86_64                                                                                                                  37/111
  Installing : libIDL-0.8.13-2.1.el6.x86_64                                                                                                                     38/111
  Installing : ORBit2-2.14.17-5.el6.x86_64                                                                                                                      39/111
  Installing : eggdbus-0.6-3.el6.x86_64                                                                                                                         40/111
  Installing : polkit-0.96-7.el6.x86_64                                                                                                                         41/111
  Installing : ConsoleKit-0.4.1-3.el6.x86_64                                                                                                                    42/111
  Installing : libcroco-0.6.2-5.el6.x86_64                                                                                                                      43/111
  Installing : desktop-file-utils-0.15-9.el6.x86_64                                                                                                             44/111
  Installing : compat-libcap1-1.10-1.x86_64                                                                                                                     45/111
  Installing : compat-libstdc++-33-3.2.3-69.el6.x86_64                                                                                                          46/111
  Installing : pixman-0.32.4-4.el6.x86_64                                                                                                                       47/111
  Installing : unzip-6.0-1.el6.x86_64                                                                                                                           48/111
  Installing : zip-3.0-1.el6.x86_64                                                                                                                             49/111
  Installing : libgomp-4.4.7-11.el6.x86_64                                                                                                                      50/111
  Installing : ksh-20120801-21.el6.1.x86_64                                                                                                                     51/111
  Installing : libthai-0.1.12-3.el6.x86_64                                                                                                                      52/111
  Installing : sysstat-9.0.4-27.el6.x86_64                                                                                                                      53/111
  Installing : avahi-libs-0.6.25-15.el6.x86_64                                                                                                                  54/111
  Installing : 1:cups-libs-1.4.2-67.el6.x86_64                                                                                                                  55/111
  Installing : lsof-4.82-4.el6.x86_64                                                                                                                           56/111
  Installing : alsa-lib-1.0.22-3.el6.x86_64                                                                                                                     57/111
  Installing : libX11-common-1.6.0-2.2.el6.noarch                                                                                                               58/111
  Installing : libX11-1.6.0-2.2.el6.x86_64                                                                                                                      59/111
  Installing : libXext-1.3.2-2.1.el6.x86_64                                                                                                                     60/111
  Installing : libXrender-0.9.8-2.1.el6.x86_64                                                                                                                  61/111
  Installing : cairo-1.8.8-3.1.el6.x86_64                                                                                                                       62/111
  Installing : libXi-1.7.2-2.2.el6.x86_64                                                                                                                       63/111
  Installing : gdk-pixbuf2-2.24.1-5.el6.x86_64                                                                                                                  64/111
  Installing : libXfixes-5.0.1-2.1.el6.x86_64                                                                                                                   65/111
  Installing : libXt-1.1.4-6.1.el6.x86_64                                                                                                                       66/111
  Installing : libXmu-1.1.1-2.el6.x86_64                                                                                                                        67/111
  Installing : libXft-2.3.1-2.el6.x86_64                                                                                                                        68/111
  Installing : pango-1.28.1-10.0.1.el6.x86_64                                                                                                                   69/111
  Installing : libXinerama-1.1.3-2.1.el6.x86_64                                                                                                                 70/111
  Installing : libXpm-3.5.10-2.el6.x86_64                                                                                                                       71/111
  Installing : libXaw-1.0.11-2.el6.x86_64                                                                                                                       72/111
  Installing : libotf-0.9.9-3.1.el6.x86_64                                                                                                                      73/111
  Installing : 1:xorg-x11-xauth-1.0.2-7.1.el6.x86_64                                                                                                            74/111
  Installing : libXdamage-1.1.3-4.el6.x86_64                                                                                                                    75/111
  Installing : libXcursor-1.1.14-2.1.el6.x86_64                                                                                                                 76/111
  Installing : libXtst-1.2.2-2.1.el6.x86_64                                                                                                                     77/111
  Installing : libXrandr-1.4.1-2.1.el6.x86_64                                                                                                                   78/111
  Installing : libdmx-1.1.3-3.el6.x86_64                                                                                                                        79/111
  Installing : libXxf86dga-1.1.4-2.1.el6.x86_64                                                                                                                 80/111
  Installing : libXxf86vm-1.1.3-2.1.el6.x86_64                                                                                                                  81/111
  Installing : libXxf86misc-1.0.3-4.el6.x86_64                                                                                                                  82/111
  Installing : libXv-1.0.9-2.1.el6.x86_64                                                                                                                       83/111
  Installing : xorg-x11-utils-7.5-6.el6.x86_64                                                                                                                  84/111
  Installing : giflib-4.1.6-3.1.el6.x86_64                                                                                                                      85/111
  Installing : libXcomposite-0.4.3-4.el6.x86_64                                                                                                                 86/111
  Installing : sgml-common-0.6.3-33.el6.noarch                                                                                                                  87/111
  Installing : GConf2-2.28.0-6.el6.x86_64                                                                                                                       88/111
  Installing : libgsf-1.14.15-5.el6.x86_64                                                                                                                      89/111
  Installing : hicolor-icon-theme-0.11-1.1.el6.noarch                                                                                                           90/111
  Installing : gtk2-2.24.23-6.el6.x86_64                                                                                                                        91/111
  Installing : librsvg2-2.26.0-14.el6.x86_64                                                                                                                    92/111
  Installing : 1:emacs-23.1-25.el6.x86_64                                                                                                                       93/111
  Installing : kernel-uek-headers-3.8.13-26.2.4.el6uek.x86_64                                                                                                   94/111
  Installing : nss-softokn-freebl-3.14.3-17.el6.i686                                                                                                            95/111
  Installing : glibc-2.12-1.149.el6.i686                                                                                                                        96/111
  Installing : libgcc-4.4.7-11.el6.i686                                                                                                                         97/111
  Installing : glibc-headers-2.12-1.149.el6.x86_64                                                                                                              98/111
  Installing : glibc-devel-2.12-1.149.el6.i686                                                                                                                  99/111
  Installing : gcc-4.4.7-11.el6.x86_64                                                                                                                         100/111
  Installing : gcc-c++-4.4.7-11.el6.x86_64                                                                                                                     101/111
  Installing : glibc-devel-2.12-1.149.el6.x86_64                                                                                                               102/111
  Installing : libstdc++-4.4.7-11.el6.i686                                                                                                                     103/111
  Installing : compat-libstdc++-33-3.2.3-69.el6.i686                                                                                                           104/111
  Installing : epmvirt-11.1.2.3.0-1.x86_64                                                                                                                     105/111
Changing password for user oracle.
passwd: all authentication tokens updated successfully.
mkdir: cannot create directory `/u0': File exists
mkdir: cannot create directory `/u0/install': File exists
error: "net.bridge.bridge-nf-call-ip6tables" is an unknown key
error: "net.bridge.bridge-nf-call-iptables" is an unknown key
error: "net.bridge.bridge-nf-call-arptables" is an unknown key
net.ipv4.ip_forward = 0
net.ipv4.conf.default.rp_filter = 1
net.ipv4.conf.default.accept_source_route = 0
kernel.sysrq = 0
kernel.core_uses_pid = 1
net.ipv4.tcp_syncookies = 1
kernel.msgmnb = 65536
kernel.msgmax = 65536
kernel.shmmax = 68719476736
kernel.shmall = 4294967296
fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 1793945600
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
iptables: Setting chains to policy ACCEPT: filter [  OK  ]
iptables: Flushing firewall rules: [  OK  ]
iptables: Unloading modules: [  OK  ]
  Cleanup    : libstdc++-4.4.7-4.el6.x86_64                                                                                                                    106/111
  Cleanup    : glib2-2.26.1-3.el6.x86_64                                                                                                                       107/111
  Cleanup    : glibc-common-2.12-1.132.el6.x86_64                                                                                                              108/111
  Cleanup    : nss-softokn-freebl-3.14.3-9.el6.x86_64                                                                                                          109/111
  Cleanup    : glibc-2.12-1.132.el6.x86_64                                                                                                                     110/111
  Cleanup    : libgcc-4.4.7-4.el6.x86_64                                                                                                                       111/111
  Verifying  : libstdc++-4.4.7-11.el6.x86_64                                                                                                                     1/111
  Verifying  : libXdamage-1.1.3-4.el6.x86_64                                                                                                                     2/111
  Verifying  : 4:perl-5.10.1-136.el6.x86_64                                                                                                                      3/111
  Verifying  : libSM-1.2.1-2.el6.x86_64                                                                                                                          4/111
  Verifying  : compat-libcap1-1.10-1.x86_64                                                                                                                      5/111
  Verifying  : libstdc++-4.4.7-11.el6.i686                                                                                                                       6/111
  Verifying  : compat-libstdc++-33-3.2.3-69.el6.x86_64                                                                                                           7/111
  Verifying  : kernel-uek-headers-3.8.13-26.2.4.el6uek.x86_64                                                                                                    8/111
  Verifying  : glib2-2.28.8-4.el6.x86_64                                                                                                                         9/111
  Verifying  : libdmx-1.1.3-3.el6.x86_64                                                                                                                        10/111
  Verifying  : glibc-headers-2.12-1.149.el6.x86_64                                                                                                              11/111
  Verifying  : glibc-devel-2.12-1.149.el6.i686                                                                                                                  12/111
  Verifying  : libIDL-0.8.13-2.1.el6.x86_64                                                                                                                     13/111
  Verifying  : gnutls-2.8.5-14.el6_5.x86_64                                                                                                                     14/111
  Verifying  : libXtst-1.2.2-2.1.el6.x86_64                                                                                                                     15/111
  Verifying  : 2:libpng-1.2.49-1.el6_2.x86_64                                                                                                                   16/111
  Verifying  : libXaw-1.0.11-2.el6.x86_64                                                                                                                       17/111
  Verifying  : libXrandr-1.4.1-2.1.el6.x86_64                                                                                                                   18/111
  Verifying  : m17n-db-datafiles-1.5.5-1.1.el6.noarch                                                                                                           19/111
  Verifying  : pixman-0.32.4-4.el6.x86_64                                                                                                                       20/111
  Verifying  : cpp-4.4.7-11.el6.x86_64                                                                                                                          21/111
  Verifying  : giflib-4.1.6-3.1.el6.x86_64                                                                                                                      22/111
  Verifying  : 1:perl-Module-Pluggable-3.90-136.el6.x86_64                                                                                                      23/111
  Verifying  : libXpm-3.5.10-2.el6.x86_64                                                                                                                       24/111
  Verifying  : libgcc-4.4.7-11.el6.x86_64                                                                                                                       25/111
  Verifying  : libX11-1.6.0-2.2.el6.x86_64                                                                                                                      26/111
  Verifying  : libgcc-4.4.7-11.el6.i686                                                                                                                         27/111
  Verifying  : 1:dbus-1.2.24-7.0.1.el6_3.x86_64                                                                                                                 28/111
  Verifying  : mpfr-2.4.1-6.el6.x86_64                                                                                                                          29/111
  Verifying  : 1:perl-Pod-Simple-3.13-136.el6.x86_64                                                                                                            30/111
  Verifying  : 1:emacs-23.1-25.el6.x86_64                                                                                                                       31/111
  Verifying  : libXxf86dga-1.1.4-2.1.el6.x86_64                                                                                                                 32/111
  Verifying  : cloog-ppl-0.15.7-1.2.el6.x86_64                                                                                                                  33/111
  Verifying  : nss-softokn-freebl-3.14.3-17.el6.x86_64                                                                                                          34/111
  Verifying  : libXxf86vm-1.1.3-2.1.el6.x86_64                                                                                                                  35/111
  Verifying  : libXcursor-1.1.14-2.1.el6.x86_64                                                                                                                 36/111
  Verifying  : 1:cups-libs-1.4.2-67.el6.x86_64                                                                                                                  37/111
  Verifying  : libXau-1.0.6-4.el6.x86_64                                                                                                                        38/111
  Verifying  : libotf-0.9.9-3.1.el6.x86_64                                                                                                                      39/111
  Verifying  : libgsf-1.14.15-5.el6.x86_64                                                                                                                      40/111
  Verifying  : libxcb-1.9.1-2.el6.x86_64                                                                                                                        41/111
  Verifying  : 1:xorg-x11-xauth-1.0.2-7.1.el6.x86_64                                                                                                            42/111
  Verifying  : hicolor-icon-theme-0.11-1.1.el6.noarch                                                                                                           43/111
  Verifying  : jasper-libs-1.900.1-15.el6_1.1.x86_64                                                                                                            44/111
  Verifying  : epmvirt-11.1.2.3.0-1.x86_64                                                                                                                      45/111
  Verifying  : unzip-6.0-1.el6.x86_64                                                                                                                           46/111
  Verifying  : libtiff-3.9.4-10.el6_5.x86_64                                                                                                                    47/111
  Verifying  : sgml-common-0.6.3-33.el6.noarch                                                                                                                  48/111
  Verifying  : glibc-devel-2.12-1.149.el6.x86_64                                                                                                                49/111
  Verifying  : libXxf86misc-1.0.3-4.el6.x86_64                                                                                                                  50/111
  Verifying  : gdk-pixbuf2-2.24.1-5.el6.x86_64                                                                                                                  51/111
  Verifying  : GConf2-2.28.0-6.el6.x86_64                                                                                                                       52/111
  Verifying  : 3:perl-version-0.77-136.el6.x86_64                                                                                                               53/111
  Verifying  : libXfixes-5.0.1-2.1.el6.x86_64                                                                                                                   54/111
  Verifying  : eggdbus-0.6-3.el6.x86_64                                                                                                                         55/111
  Verifying  : zip-3.0-1.el6.x86_64                                                                                                                             56/111
  Verifying  : xorg-x11-utils-7.5-6.el6.x86_64                                                                                                                  57/111
  Verifying  : libXt-1.1.4-6.1.el6.x86_64                                                                                                                       58/111
  Verifying  : cairo-1.8.8-3.1.el6.x86_64                                                                                                                       59/111
  Verifying  : freetype-2.3.11-14.el6_3.1.x86_64                                                                                                                60/111
  Verifying  : libgomp-4.4.7-11.el6.x86_64                                                                                                                      61/111
  Verifying  : nss-softokn-freebl-3.14.3-17.el6.i686                                                                                                            62/111
  Verifying  : gcc-c++-4.4.7-11.el6.x86_64                                                                                                                      63/111
  Verifying  : libX11-common-1.6.0-2.2.el6.noarch                                                                                                               64/111
  Verifying  : pango-1.28.1-10.0.1.el6.x86_64                                                                                                                   65/111
  Verifying  : gtk2-2.24.23-6.el6.x86_64                                                                                                                        66/111
  Verifying  : 1:emacs-common-23.1-25.el6.x86_64                                                                                                                67/111
  Verifying  : gcc-4.4.7-11.el6.x86_64                                                                                                                          68/111
  Verifying  : ppl-0.10.2-11.el6.x86_64                                                                                                                         69/111
  Verifying  : glibc-2.12-1.149.el6.x86_64                                                                                                                      70/111
  Verifying  : 1:perl-Pod-Escapes-1.04-136.el6.x86_64                                                                                                           71/111
  Verifying  : polkit-0.96-7.el6.x86_64                                                                                                                         72/111
  Verifying  : ksh-20120801-21.el6.1.x86_64                                                                                                                     73/111
  Verifying  : m17n-db-1.5.5-1.1.el6.noarch                                                                                                                     74/111
  Verifying  : 4:perl-libs-5.10.1-136.el6.x86_64                                                                                                                75/111
  Verifying  : glibc-common-2.12-1.149.el6.x86_64                                                                                                               76/111
  Verifying  : atk-1.30.0-1.el6.x86_64                                                                                                                          77/111
  Verifying  : glibc-2.12-1.149.el6.i686                                                                                                                        78/111
  Verifying  : libXcomposite-0.4.3-4.el6.x86_64                                                                                                                 79/111
  Verifying  : libXmu-1.1.1-2.el6.x86_64                                                                                                                        80/111
  Verifying  : libXrender-0.9.8-2.1.el6.x86_64                                                                                                                  81/111
  Verifying  : librsvg2-2.26.0-14.el6.x86_64                                                                                                                    82/111
  Verifying  : libaio-devel-0.3.107-10.el6.x86_64                                                                                                               83/111
  Verifying  : fontconfig-2.8.0-5.el6.x86_64                                                                                                                    84/111
  Verifying  : compat-libstdc++-33-3.2.3-69.el6.i686                                                                                                            85/111
  Verifying  : libthai-0.1.12-3.el6.x86_64                                                                                                                      86/111
  Verifying  : ConsoleKit-0.4.1-3.el6.x86_64                                                                                                                    87/111
  Verifying  : libstdc++-devel-4.4.7-11.el6.x86_64                                                                                                              88/111
  Verifying  : libXext-1.3.2-2.1.el6.x86_64                                                                                                                     89/111
  Verifying  : sysstat-9.0.4-27.el6.x86_64                                                                                                                      90/111
  Verifying  : ORBit2-2.14.17-5.el6.x86_64                                                                                                                      91/111
  Verifying  : avahi-libs-0.6.25-15.el6.x86_64                                                                                                                  92/111
  Verifying  : libXft-2.3.1-2.el6.x86_64                                                                                                                        93/111
  Verifying  : libaio-0.3.107-10.el6.x86_64                                                                                                                     94/111
  Verifying  : lsof-4.82-4.el6.x86_64                                                                                                                           95/111
  Verifying  : ConsoleKit-libs-0.4.1-3.el6.x86_64                                                                                                               96/111
  Verifying  : alsa-lib-1.0.22-3.el6.x86_64                                                                                                                     97/111
  Verifying  : m17n-lib-1.5.5-2.el6_1.1.x86_64                                                                                                                  98/111
  Verifying  : libXinerama-1.1.3-2.1.el6.x86_64                                                                                                                 99/111
  Verifying  : libjpeg-turbo-1.2.1-3.el6_5.x86_64                                                                                                              100/111
  Verifying  : libXi-1.7.2-2.2.el6.x86_64                                                                                                                      101/111
  Verifying  : libcroco-0.6.2-5.el6.x86_64                                                                                                                     102/111
  Verifying  : libICE-1.0.6-1.el6.x86_64                                                                                                                       103/111
  Verifying  : desktop-file-utils-0.15-9.el6.x86_64                                                                                                            104/111
  Verifying  : libXv-1.0.9-2.1.el6.x86_64                                                                                                                      105/111
  Verifying  : libstdc++-4.4.7-4.el6.x86_64                                                                                                                    106/111
  Verifying  : nss-softokn-freebl-3.14.3-9.el6.x86_64                                                                                                          107/111
  Verifying  : libgcc-4.4.7-4.el6.x86_64                                                                                                                       108/111
  Verifying  : glibc-2.12-1.132.el6.x86_64                                                                                                                     109/111
  Verifying  : glibc-common-2.12-1.132.el6.x86_64                                                                                                              110/111
  Verifying  : glib2-2.26.1-3.el6.x86_64                                                                                                                       111/111

Installed:
  epmvirt.x86_64 0:11.1.2.3.0-1

Dependency Installed:
  ConsoleKit.x86_64 0:0.4.1-3.el6                             ConsoleKit-libs.x86_64 0:0.4.1-3.el6                GConf2.x86_64 0:2.28.0-6.el6
  ORBit2.x86_64 0:2.14.17-5.el6                               alsa-lib.x86_64 0:1.0.22-3.el6                      atk.x86_64 0:1.30.0-1.el6
  avahi-libs.x86_64 0:0.6.25-15.el6                           cairo.x86_64 0:1.8.8-3.1.el6                        cloog-ppl.x86_64 0:0.15.7-1.2.el6
  compat-libcap1.x86_64 0:1.10-1                              compat-libstdc++-33.i686 0:3.2.3-69.el6             compat-libstdc++-33.x86_64 0:3.2.3-69.el6
  cpp.x86_64 0:4.4.7-11.el6                                   cups-libs.x86_64 1:1.4.2-67.el6                     dbus.x86_64 1:1.2.24-7.0.1.el6_3
  desktop-file-utils.x86_64 0:0.15-9.el6                      eggdbus.x86_64 0:0.6-3.el6                          emacs.x86_64 1:23.1-25.el6
  emacs-common.x86_64 1:23.1-25.el6                           fontconfig.x86_64 0:2.8.0-5.el6                     freetype.x86_64 0:2.3.11-14.el6_3.1
  gcc.x86_64 0:4.4.7-11.el6                                   gcc-c++.x86_64 0:4.4.7-11.el6                       gdk-pixbuf2.x86_64 0:2.24.1-5.el6
  giflib.x86_64 0:4.1.6-3.1.el6                               glibc.i686 0:2.12-1.149.el6                         glibc-devel.i686 0:2.12-1.149.el6
  glibc-devel.x86_64 0:2.12-1.149.el6                         glibc-headers.x86_64 0:2.12-1.149.el6               gnutls.x86_64 0:2.8.5-14.el6_5
  gtk2.x86_64 0:2.24.23-6.el6                                 hicolor-icon-theme.noarch 0:0.11-1.1.el6            jasper-libs.x86_64 0:1.900.1-15.el6_1.1
  kernel-uek-headers.x86_64 0:3.8.13-26.2.4.el6uek            ksh.x86_64 0:20120801-21.el6.1                      libICE.x86_64 0:1.0.6-1.el6
  libIDL.x86_64 0:0.8.13-2.1.el6                              libSM.x86_64 0:1.2.1-2.el6                          libX11.x86_64 0:1.6.0-2.2.el6
  libX11-common.noarch 0:1.6.0-2.2.el6                        libXau.x86_64 0:1.0.6-4.el6                         libXaw.x86_64 0:1.0.11-2.el6
  libXcomposite.x86_64 0:0.4.3-4.el6                          libXcursor.x86_64 0:1.1.14-2.1.el6                  libXdamage.x86_64 0:1.1.3-4.el6
  libXext.x86_64 0:1.3.2-2.1.el6                              libXfixes.x86_64 0:5.0.1-2.1.el6                    libXft.x86_64 0:2.3.1-2.el6
  libXi.x86_64 0:1.7.2-2.2.el6                                libXinerama.x86_64 0:1.1.3-2.1.el6                  libXmu.x86_64 0:1.1.1-2.el6
  libXpm.x86_64 0:3.5.10-2.el6                                libXrandr.x86_64 0:1.4.1-2.1.el6                    libXrender.x86_64 0:0.9.8-2.1.el6
  libXt.x86_64 0:1.1.4-6.1.el6                                libXtst.x86_64 0:1.2.2-2.1.el6                      libXv.x86_64 0:1.0.9-2.1.el6
  libXxf86dga.x86_64 0:1.1.4-2.1.el6                          libXxf86misc.x86_64 0:1.0.3-4.el6                   libXxf86vm.x86_64 0:1.1.3-2.1.el6
  libaio.x86_64 0:0.3.107-10.el6                              libaio-devel.x86_64 0:0.3.107-10.el6                libcroco.x86_64 0:0.6.2-5.el6
  libdmx.x86_64 0:1.1.3-3.el6                                 libgcc.i686 0:4.4.7-11.el6                          libgomp.x86_64 0:4.4.7-11.el6
  libgsf.x86_64 0:1.14.15-5.el6                               libjpeg-turbo.x86_64 0:1.2.1-3.el6_5                libotf.x86_64 0:0.9.9-3.1.el6
  libpng.x86_64 2:1.2.49-1.el6_2                              librsvg2.x86_64 0:2.26.0-14.el6                     libstdc++.i686 0:4.4.7-11.el6
  libstdc++-devel.x86_64 0:4.4.7-11.el6                       libthai.x86_64 0:0.1.12-3.el6                       libtiff.x86_64 0:3.9.4-10.el6_5
  libxcb.x86_64 0:1.9.1-2.el6                                 lsof.x86_64 0:4.82-4.el6                            m17n-db.noarch 0:1.5.5-1.1.el6
  m17n-db-datafiles.noarch 0:1.5.5-1.1.el6                    m17n-lib.x86_64 0:1.5.5-2.el6_1.1                   mpfr.x86_64 0:2.4.1-6.el6
  nss-softokn-freebl.i686 0:3.14.3-17.el6                     pango.x86_64 0:1.28.1-10.0.1.el6                    perl.x86_64 4:5.10.1-136.el6
  perl-Module-Pluggable.x86_64 1:3.90-136.el6                 perl-Pod-Escapes.x86_64 1:1.04-136.el6              perl-Pod-Simple.x86_64 1:3.13-136.el6
  perl-libs.x86_64 4:5.10.1-136.el6                           perl-version.x86_64 3:0.77-136.el6                  pixman.x86_64 0:0.32.4-4.el6
  polkit.x86_64 0:0.96-7.el6                                  ppl.x86_64 0:0.10.2-11.el6                          sgml-common.noarch 0:0.6.3-33.el6
  sysstat.x86_64 0:9.0.4-27.el6                               unzip.x86_64 0:6.0-1.el6                            xorg-x11-utils.x86_64 0:7.5-6.el6
  xorg-x11-xauth.x86_64 1:1.0.2-7.1.el6                       zip.x86_64 0:3.0-1.el6

Dependency Updated:
  glib2.x86_64 0:2.28.8-4.el6           glibc.x86_64 0:2.12-1.149.el6                   glibc-common.x86_64 0:2.12-1.149.el6       libgcc.x86_64 0:4.4.7-11.el6
  libstdc++.x86_64 0:4.4.7-11.el6       nss-softokn-freebl.x86_64 0:3.14.3-17.el6

Complete!
[root@localhost ~]#

Continue to Step 4: Copying Files to Virtual Machine



EPMVirt - Step 4: Copy the Downloads to Virtual Machine

$
0
0

Step 4: Copy the Downloads to the Virtual Machine
ETA for this step: 45 minutes (waiting for files to copy)

In this step, we copy the files you downloaded in Step 1 over to the Virtual Machine for installation.

Using winscp, http://winscp.net/eng/index.php
Login to the Virtual Machine using the internet address noted in step 2.

The password for the user oracle is oracle.



On the left hand pane (your machine) navigate to the downloads folder where you stored the downloads.


On the right hand pane navigate to the unix folder, /u0/install/downloads

Drag the downloaded files into the right pane to copy them to the virtual server in /u0/install/downloads

EPMVirt - Step 5: Run buildEPMvirt Script

$
0
0

EPM Virtual Environment Intro
Step 1: Download Required Software
Step 2: Create Virtual Oracle Linux Instance
Step 3: Install EPMVirt RPM
Step 4: Copy Downloads to Virtual Machine

Step 5: The buildEPMvirt script

ETA for this step: 5 hours (automated install of Oracle EPM)

This step does most of the work. The following are the high level steps:
  1. Extracts the files in /u0/install/downloads
  2. Perform an unattended/silent install of Oracle Database
  3. Create a database instance HYPDB and create schemas..etc for Hyperion
  4. Perform an unattended/silent install of Oracle EPM
  5. Perform an unattended/silent configuration of Oracle EPM
  6. Starts Oracle EPM

Kicking off the buildEPMvirt script

This process will take a few hours and should not be interrupted. Please make sure to do this at a time when you can kick off the script and let it run without putting your computer to sleep...etc. 

Using the ip address gleamed from step 2, login via PUTTY to the Virtual Node as 'oracle' user. Password is also 'oracle'. 

at the Linux prompt, type 'buildEPMvirt'

Sit back and relax. This process will take a while, but rest assured it is much faster than doing it yourself! After the script runs, you are finished and should have a complete Oracle EPM environment.

Sample Output

Archive:  /u0/install/downloads/V37933-01.zip
  inflating: /u0/install/epm/InstallTool.properties
  inflating: /u0/install/epm/installTool.lang
  inflating: /u0/install/epm/setup.jar
   creating: /u0/install/epm/assemblies/
   creating: /u0/install/epm/assemblies/biplus_workspace_new_webapp/
   creating: /u0/install/epm/assemblies/biplus_workspace_new_webapp/11.1.2.0/
   creating: /u0/install/epm/assemblies/ocm/
   creating: /u0/install/epm/assemblies/ocm/11.1.2.0/
   creating: /u0/install/epm/assemblies/oracle_common/
   creating: /u0/install/epm/assemblies/oracle_common/11.1.2.0/
   creating: /u0/install/epm/assemblies/sharedServices/
   creating: /u0/install/epm/assemblies/sharedServices/11.1.2.0/
   creating: /u0/install/epm/assemblies/staticContent/
   creating: /u0/install/epm/assemblies/staticContent/11.1.2.0/
   creating: /u0/install/epm/assemblies/tools/
   creating: /u0/install/epm/assemblies/tools/11.1.2.0/
  inflating: /u0/install/epm/assemblies/biplus_workspace_new_webapp/11.1.2.0/assembly.dat
  inflating: /u0/install/epm/assemblies/ocm/11.1.2.0/assembly.dat
  inflating: /u0/install/epm/assemblies/oracle_common/11.1.2.0/assembly.dat
  inflating: /u0/install/epm/assemblies/sharedServices/11.1.2.0/assembly.dat
  inflating: /u0/install/epm/assemblies/staticContent/11.1.2.0/assembly.dat
  inflating: /u0/install/epm/assemblies/tools/11.1.2.0/assembly.dat
   creating: /u0/install/epm/appdev_patchset/
   creating: /u0/install/epm/appdev_patchset/Disk1/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/dcommon/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/dcommon/css/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/dcommon/gifs/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/dcommon/html/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/images/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/online_help/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/online_help.bi/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/online_help.bi/biesg/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/online_help/aiaag/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/online_help/asadm/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/online_help/asper/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/online_help/astda/
   creating: /u0/install/epm/appdev_patchset/Disk1/doc/online_help/csmsp/
.....

Found /u0/install/downloads/linuxamd64_12c_database_2of2.zip
Starting Oracle Universal Installer...

Checking Temp space: must be greater than 500 MB.   Actual 30094 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 5135 MB    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2014-10-27_11-48-21PM. Please wait ...[WARNING] [INS-13014] Target environment does not meet some optional requirements.
   CAUSE: Some of the optional prerequisites are not met. See logs for details. /tmp/OraInstall2014-10-27_11-48-21PM/installActions2014-10-27_11-48-21PM.log
   ACTION: Identify the list of failed prerequisite checks from the log: /tmp/OraInstall2014-10-27_11-48-21PM/installActions2014-10-27_11-48-21PM.log. Then either from the log file or from installation manual find the appropriate configuration to meet the prerequisites and fix it manually.
You can find the log of this install session at:
 /u0/app/oraInventory/logs/installActions2014-10-27_11-48-21PM.log

Prepare in progress.
..................................................   9% Done.

Prepare successful.

Copy files in progress.
..................................................   15% Done.
..................................................   20% Done.
..................................................   25% Done.
..................................................   30% Done.
..................................................   35% Done.
..................................................   40% Done.
..................................................   45% Done.
..................................................   50% Done.
..................................................   55% Done.
..................................................   60% Done.
..................................................   65% Done.
..................................................   70% Done.
..................................................   75% Done.
..................................................   80% Done.

Copy files successful.

Link binaries in progress.

Link binaries successful.

Setup files in progress.
........................................
Setup files successful.
..................................................   86% Done.

Setup Inventory in progress.

Setup Inventory successful.
..........
Finish Setup in progress.
..................................................   94% Done.

Finish Setup successful.
The installation of Oracle Database 12c was successful.
Please check '/u0/app/oraInventory/logs/silentInstall2014-10-27_11-48-21PM.log' for more details.

As a root user, execute the following script(s):
        1. /u0/app/oraInventory/orainstRoot.sh
        2. /u0/app/oracle/product/12.1.0/dbhome_1/root.sh


..................................................   100% Done.
Successfully Setup Software.
Check /u0/app/oracle/product/12.1.0/dbhome_1/install/root_localhost.localdomain_2014-10-28_00-06-41.log for the output of root script
Changing permissions of /u0/app/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.

Changing groupname of /u0/app/oraInventory to dba.
The execution of the script is complete.

SQL*Plus: Release 12.1.0.1.0 Production on Tue Oct 28 00:06:43 2014

Copyright (c) 1982, 2013, Oracle.  All rights reserved.

Connected to an idle instance.

SQL> ORACLE instance started.

Total System Global Area 1369579520 bytes
Fixed Size                  2288200 bytes
Variable Size            1241515448 bytes
Database Buffers          117440512 bytes
Redo Buffers                8335360 bytes
SQL>
File created.

SQL> Disconnected from Oracle Database 12c Release 12.1.0.1.0 - 64bit Production

SQL*Plus: Release 12.1.0.1.0 Production on Tue Oct 28 00:09:42 2014

Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to:
Oracle Database 12c Release 12.1.0.1.0 - 64bit Production

SQL>   2    3    4    5    6    7    8    9   10   11   12   13   14   15   16   17   18   19   20   21   22   23
Database created.

SQL> SQL>
Session altered.


Session altered.
....



Oracle Database 12c Release 12.1.0.1.0 - 64bit Production

SQL> Disconnected from Oracle Database 12c Release 12.1.0.1.0 - 64bit Production

Installer Path check... Ok
Checking if running under root account... Ok
Current user is not root.
EPMINS-01087: Checking if the file exist and have read permissions: /u0/install/epm/assemblies... Ok
EPMINS-01087: Checking if the file exist and have read permissions: /u0/install/epm/jre... Ok
EPMINS-01087: Checking if the file exist and have read permissions: /u0/install/epm/setup.jar... Ok
Check assemblies:
    /u0/install/epm/assemblies/biplus_product_reporting_client... Not exists
    /u0/install/epm/assemblies/staticContent/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/webLogicCommonComponent/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/dbclient64... Not exists
    /u0/install/epm/assemblies/aif/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/ocm/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/calc/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/opmn/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/bpm_architect_datasync/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/essbase_services/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/biplus_interactive_reporting_services/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/bpm_architect_batch_client/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/hsf_server... Not exists
    /u0/install/epm/assemblies/tools/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/productCommonComponents/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/hpm/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/bpm_architect_webapp/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/biplus_product_reporting_common/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/dbclient32... Not exists
    /u0/install/epm/assemblies/fdm... Not exists
    /u0/install/epm/assemblies/biplus_financial_reporting_common/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/arm/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/biplus_financial_reporting_webapp/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/biplus_webanalysis_webapp/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/biplus_workspace_webapp/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/ohs... Not exists
    /u0/install/epm/assemblies/hfm_client/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/sharedServices/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/odi/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/biplus_portlets_webapp/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/biplus_core_services/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/commonComponents/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/essbaseProductCommonComponents/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/essbase_studio_services/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/oracle_common/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/hfm_common/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/analytic_services_provider_webapp/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/planning/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/biplus_product_reporting_services/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/financial_close/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/hsf_webapp... Not exists
    /u0/install/epm/assemblies/disclosure/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/bpm_architect_services... Not exists
    /u0/install/epm/assemblies/hfm_services... Not exists
    /u0/install/epm/assemblies/hfm_webapp/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/essbase_integration_services/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/biplus_workspace_new_webapp/11.1.2.0/assembly.dat... Ok
    /u0/install/epm/assemblies/essbase_administration_services_webapp/11.1.2.0/assembly.dat... Ok
Result of checking assemblies: Ok
Checking environment variables...
    EPMINS-01056: Could not set the environment variable TMP.
    EPMINS-01056: Could not set the environment variable TMPDIR.
Environment variable /tmp would be used.
Ok
EPMINS-01087: Checking if the file exist and have read permissions: /home/oracle...
Ok
    EPMINS-01099: User home have to exist for successful installation.
EPMINS-01002: All installation prerequisites have been met. Starting EPM System Installer.

EPMINS-01032: Checking for available disk space in the /u0/Oracle/Middleware/EPMSystem11R1 directory.
EPMINS-01033: The selected components require 9882 MB free disk space.
EPMINS-01034: You have 24335 MB free disk space.
Extracting files...
Installing Database...
DB Connection OK!
Installing EPM...

Installing...
Running preconfig checks...
Running EPM_ORACLE_HOME...
    EPM_ORACLE_HOME environment variable value: /u0/Oracle/Middleware/EPMSystem11R1
    JAVA_HOME environment variable value: /u0/Oracle/Middleware/EPMSystem11R1/../jdk160_35
EPM_ORACLE_HOME succeeded
Running .oracle.products ... .oracle.products  succeeded
Running Jars manifest ...
    Time spent for manifests parsing: 299 ms
    Maximum jars depth achieved: 6, while restriction was: unrestricted
    Parsed 450 manifests
    Total jars and classpath entries encountered: 450
    Total not-existing referenced classpath entries count: 44
    Total classpath elements to check: 57
Jars manifest  succeeded
Jars manifest  succeeded
Environment variables  succeeded
Preconfig checks passed! Proceeding further
Starting all
Apache Ant version 1.7.1 compiled on June 27 2008
Buildfile: /u0/Oracle/Middleware/EPMSystem11R1/common/config/11.1.2.0/resources/instance/start.xml

Finish all
EPM Install OK.
EPM Install Component Count OK.
Configuring EPM...
EPM Config OK...
Starting EPM...

Installation Complete!


EPMVirt Debugging

$
0
0

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


#!/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/* \
    /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!

resetConfigTask.bat

$
0
0
Sometimes it is necessary to reset a configuration task in order to redo some specific actions which the config tool does during the initial configuration. Meaning there are some tasks that are only performed one time during the initial configuration. Subsequent runs on the config tool task do not select these tasks, such as the pre-configuration tasks.




Since this task is already green indicating it is configured, the next step only has 1 task:











However, there are additional pre-configuration tasks that can be run by setting the status of the task back from Configured to Pending:


Now this shows the Pre-Configuration Tasks


What to Do?
In the past this was done by changing the xml files associated with the product. For instance, epma would be located in the directory

Oracle\Middleware\user_projects\epmsystem1\config\foundation\11.1.2.0\product\bpma\11.1.2.0
And the file  bpma_1_config.xml  would contain the status of each deployment task.

<property name="applicationServerDeployment">Configured</property> 
<property name="bpmaInterfaceDatasourceConfiguration">Configured</property> 
<property name="bpmaVirtualDirectoryConfiguration">Configured</property>
<property name="hubRegistration">Configured</property>
<property name="preConfiguration">Configured</property> 

In 11.1.2.2 the deployment tasks have been moved into the database so as to become a central location for editing this metadata. Now, to change the metadata you should use the resetConfigTask.bat utility located in the following directory:
D:\Oracle\Middleware\user_projects\epmsystem1\bin

It takes two arguments, the –task and the –product. The product name can be found by looking in a registry report, search for the word “Configured”.

For instance, let’s modify the preConfiguration task for RA Framework. First, check the registry report:















We wish to change the preConfiguration to Pending in order to rerun the pre-configuration scripts for reporting and analysis


D:\Oracle\Middleware\user_projects\epmsystem1\bin>resetConfigTask.bat -product r
aframework -task preConfiguration

D:\Oracle\Middleware\user_projects\epmsystem1\bin>"D:\Oracle\Middleware\EPMSyste
m11R1\common\config\11.1.2.0\resetConfigTask.bat" -eoi "D:\Oracle\Middleware\use
r_projects\epmsystem1" -product raframework -task preConfiguration
Task [preConfiguration] for product [raframework] has been found under [INSTANCE
_TASKS_CONFIGURATION] component with id [18349408fd0bc34c6a4ad8e913aade7a519S4de
c]

Now to check the instance configuration in the epm system registry report:










Now the task is set to pending as shown in the above screenshot.

EPM Log Files Revisited

$
0
0


The topic of log files can be a bit mundane, yet during troubleshooting I find myself constantly pursuing log files. The ability to navigate quickly to the correct log file is crucial for successful administration of the EPM system.

For example, a quick review of the log files on a typical EPM system might include over 100 log files:



\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_Admin.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FinancialReporting*\logs\FRLogging.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FinancialReporting*\logs\FinancialReporting*.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\CalcMgr*\logs\CalcManager.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\CalcMgr*\logs\CalcMgr*.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\FoundationServices*.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_Admin.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_Audit.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_Bpmui.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_Bpmui_Config.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_Bpmui_Sec.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_CMSClient.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_Hub.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_LCM.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_Registry.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_Security.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\SharedServices_TaskFlow.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\Workspace.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\WorkspaceConfig.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\FoundationServices*\logs\WorkspaceConfig.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\RaFramework*\logs\RaFramework*.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\hfm\hfm.odl.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\hfm\HsvEventLog.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\hfm\InteropJava.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\registry\registry.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\stdout_console_servlets.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9CALC-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9CALC-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9FinancialManagementWebSvcs-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9FinancialManagementWebSvcs-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9FoundationServices-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9FoundationServices-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9FRReports-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9FRReports-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9RaFramework-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9RaFramework-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\httpConfig\ohs\diagnostics\logs\OHS\ohs_component\access_log
\Oracle\Middleware\user_projects\epmsystem1\httpConfig\ohs\diagnostics\logs\OHS\ohs_component\console~OHS~*.log
\Oracle\Middleware\user_projects\epmsystem1\httpConfig\ohs\diagnostics\logs\OHS\ohs_component\ohs_component.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9aifWeb-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9aifWeb-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9FinancialManagementWebSvcs-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9FinancialManagementWebSvcs-sysout.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\ErpIntegrator*\logs\ErpIntegrator*.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\stdout_console_default.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\agent.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\configuration_messages_default.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\eiengine.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_AdministrationServlet.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_AnalyticBridgeService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_AuthenticationService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_AuthorizationService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_BrowseServlet.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_CommonServices.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_CSSSynchronizer.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_DataAccessServlet.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_EventService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_GSM.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_HarvesterService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_iHTMLServlet.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_JobManagerServlet.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_JobService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_LoggingService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_LSM.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_PersonalPagesServlet.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_PublisherService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_RepositoryService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_SearchIndexing.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_SearchKeywordProvider.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_SearchMonitor.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_ServiceBroker.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_ServiceBroker.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_SessionManager.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_TransformerService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\server_messages_UsageService.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\stdout_console_agent.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\FinancialReporting\FRPrintLogging.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\epma\datasync.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\epma\dimensionServer.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\epma\NetJNIBridge.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9EPMADataSynchronizer-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9EPMADataSynchronizer-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9EPMAWebTier-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9EPMAWebTier-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\FRPrintService.Err.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\FRPrintService.Out.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9RaFrameworkAgentErr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9RaFrameworkAgentOut.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EpmaDataSync*\logs\EpmaDataSync*.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EpmaWebReports*\logs\EpmaWebReports*.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\AnalyticProviderServices*\logs\AnalyticProviderServices*.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices*\logs\easserver.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices*\logs\EssbaseAdminServices*.log
\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning*\logs\Planning*.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9aps-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9aps-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9eas-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9eas-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9Planning-syserr.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9Planning-sysout.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\hfm\HsvEventLog.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\hfm\hfm.odl.log
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\hfm\InteropJava.log'


Let's focus on how to sift through the logs more quickly: 
Types of logs: 
  1. WebLogic Application Logs
    These logs come from a web deployment and are located in the domains folder:
    Oracle\Middleware\user_projects\domains\EPMSystem\servers
  2. EPM Application Logs
    Once the service or application server is started properly, its internal logging takes over using the Oracle ODL logging framework. These log files are typically in the diagnostics folder, but may also reside in the domains folder or elsewhere based on the ODL configuration.
    \Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs

WebLogic Service Not Starting
For web application based services check out the specific WebLogic application log under the domains folder. If the web app is not able to start correctly, chances are it is not writing the EPM application logs because the logger was not initialized or the underlying service never came up. In the Application server log you will see the server go through different states like STATE_PREPARED, etc. During these phases the application does things like setup JDBC connections to the database and tries to initialize its services based on configuration details within the HSS registry. The server is available once you see a message like "server started in PRODUCTION mode".


Workspace Errors After Logging On
Workspace has two components required to log on, the Framework Services and the Framework/Foundation Web Services. For the Web components check the domain logs for Framework and Foundation.
However, the Agent services must start correctly, Check for the message "Giving control to the ORB" in the log:
\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis\stdout_console_default.log
Typically, if BI will not start - some type of exception is generated during the AGENT start up in stdout_contsole*.log


Errors in a Running Service
Usually once a web service has been started the domain logs become less important because the EPM application logging starts to take over. Assuming the service has started check for the EPM Applicaiton logs in the diagnostics folder for the particular product as the WebLogic Application log usually stops giving useful messages after "server started in PRODUCTION mode".


HFM Logs
HFM has historically been an outlier with respect to log setup. The best place to look for HFM specific errors is to use the HFMErrorLogViewer utility. This utility accumulates and formats the somewhat cryptic messages left in the Windows Registry and the HFM Database for human readable display. Remember, if you have the HFM Web service on a different node than the HFM Application node - the web server HFMErrorLogViewer might have different information.

In 11.1.2.2 HFM has a WebLogic component so look in the domain logs.


FDM Logs
FDM is an IIS deployed application. It logs generic errors to the Windows Registry. During run-time specific operations like loads may generate specific log messages. The log files are viewable by selecting the log file in the FDM web menu. Additionally this log file can be found by searching for *.log within the FDM Application's share directory, prefixed with the username of the user running the operation. Additional logging regarding adapter messages can be coaxed out by setting logging levels with the adapter settings for things like ERPI.

Additional information regarding troubleshooting using the logs can be found in my other posts:
Oracle-EPM-Troubleshooting-and-Debugging-Guide-(Part-1-of-2)
Oracle-EPM-Troubleshooting-and-Debugging-Guide-(Part-2-of-2)

Viewing all 102 articles
Browse latest View live