VERDE Tomcat Memory Issue. 15 or More Users trying to login to VERDE at the same time. The MC and System Lock up

VERDE Tomcat Memory Issue. 15 or More Users trying to login to VERDE at the same time. The MC and System Lock up

Product Line:  VERDE

VERDE 8.2 with more than 10 users logging into VERDE at the same time, requires more Tomcat memory.  This is fixed in VERDE 8.2.1  Here are instructions to make the change.

vi /usr/lib/verde/bin/verde-start-tomcat.sh

Change:

if [ -n "$development_settings" ] ; then

export JAVA_OPTS="-Xms1024m -Xmx1024m -XX:MaxPermSize=512m"

else

export JAVA_OPTS="-Xms1024m -Xmx1024m -XX:MaxPermSize=512m"

fi

 

TO

 

if [ -n "$development_settings" ] ; then

export JAVA_OPTS="-Xms2048m -Xmx2048m -XX:MaxMetaspaceSize=512m"

else

export JAVA_OPTS="-Xms2048m -Xmx2048m -XX:MaxMetaspaceSize=512m"

fi


Save the change and restart Tomcat as follows:


/usr/lib/verde/bin/verde-start-tomcat.sh restart