Resolution: Option 1). In the $JAVA_HOME/jre/lib/security/java.security configuration file, add the following line.
=======================================
securerandom.source=file:/dev/./urandom.
Instead of:
securerandom.source=file:/dev/urandom.
=======================================
Option 2). If you want to avoid doing the change globally in JRE 7, you can localized the change by adding the following property in the TIBCO ActiveMatrix Adapter for Database tra file .
=======================================
java.property.java.security.egd=file:/dev/./urandom.
=======================================
Or:
=======================================
java.extended.properties=-Djava.security.egd=file:/dev/./urandom
=======================================