Tentative workaround to address an error “java.lang.OutOfMemoryError: Java heap space” raised by an EMGC_ADMINSERVER Weblogic server of an EMCC 13.2 instance.
Edit /u01/app/oracle/gc_inst/user_projects/domains/GCDomain/bin/startweblogic.sh to add the following contents to increase the memory of the AdminServer:
# START WEBLOGIC JAVA_VM=-server echo "****************************************** Debug" echo "ServerName=${SERVER_NAME}" if [ "${SERVER_NAME}" = "EMGC_ADMINSERVER" ]; then MEM_ARGS="-Xms4096m -Xmx4096m -XX:MaxPermSize=768m -verbose:gc " echo "MEM_ARGS=${MEM_ARGS}" fi echo "****************************************** Debug"