Oct 25, 2021, 9:50 AM

@wlcommunityusers

Hi,

Please follow the steps below and let us know the result.

1- You can use the ulimit command to view the soft limit and hard limit separately.

$ ulimit -n

Modify the following file to change the system limit

sudo vim/etc/security/limit.conf

For example, we set the limit for opening files for user’s running account username, add in the above file

username soft nofile 63536
username hard nofile 63536

2- Open the $JAVA_HOME/jre/lib/security/java.security file in a text editor.

Change the line:
securerandom.source=file:/dev/random
to:
securerandom.source=file:/dev/./urandom

3- WL-OPC shutdown & start

Regards.