Uncategorized

12c RPD fails to upload

On occasions when deploying the RPD file to a 12c OBIEE environment, the upload will fail, and often no actual errors to say why.  Some tips below if this happens. Workaround shutdown the entire environment i.e. stop.sh cd $domainhome/bidata/service_instance/ssi/metadata/datamodel/customizations rm *.rpd cd default rm default_diff.xml touch default _diff.xml Now restart via “start.sh”.  This will deploy and…

Uncategorized

Obiee Stuck Threads

OBIEE can suffer Stuck threads, which is often hard to get to the bottom of the route cause. In searching for helpful documents some reference materials below. Oracle Load Test Tool – could be used for Pre-Production Load testing OBIEE: Load Testing OBIEE Using Oracle Load Testing (OLT) 12.x (Doc ID 1611188.1) Tuning notes OBIEE…

Uncategorized

Java Keystore – Chaining

A good reference site for how best to create the correct chain length in a jks :- http://stackoverflow.com/questions/16062072/how-to-add-certificate-chain-to-keystore Essentially, cat all pem files into one pem file cat cert.pem chain.pem fullchain.pem >all.pem Then create a p12 file, this can then be used to import into a keystore, then the chaining count should be correct openssl…

Uncategorized

Obiee 12c Baseline Validation Tool

The 12c baseline validation tool is useful for comparing dashboards once migrated from 11g to 12c. The BVT tool is distributed in the OBIEE 12c Client tools.  It can be found @ your obiee 12c client tools directory i.e. C:\obiee12c\bi\components\oracle.bi.bvt Runtime :- cd C:\obiee12c\bi\components\oracle.bi.bvt\OracleBI-BVT bin\obibvt -config testconfig.xml -deployment PreUpgrade The testconfig.xml file is configurable, you can…

Uncategorized

Weblogic Scripting – list users

Connecting to Weblogic ( WLST ) export PATH=$PATH:$WL_HOME/server/bin cd $WL_HOME/server/bin . ./setWLSEnv.sh java weblogic.WLST Should then be-able to connect with the following command, type exit() to quit connect(‘weblogic’,’Admin123′,’localhost:7001′) To get a list of users from the internal LDAP, first create this properties file <details.properties> admin.url=t3://localhost:7001 admin.userName=weblogic admin.password=Admin123 ########## User Name which wants to get listed…