Exception in thread “[STANDBY] ExecuteThread: ‘4’ for queue: ‘weblogic.kernel.Default (self-tuning)’”
java.lang.OutOfMemoryError: PermGen space
调整PermSize 的大小为如下后,再次开启正常。
修改DOMAIN_HOME/bin/setDomainEnv.sh 中的 MaxPermSize值为1024M (根据实际需要调整)
MEM_PERM_SIZE_64BIT=”-XX:PermSize=1024m”
export MEM_PERM_SIZE_64BIT
MEM_PERM_SIZE_32BIT=”-XX:PermSize=1024m”
export MEM_PERM_SIZE_32BIT
MEM_MAX_PERM_SIZE_64BIT=”-XX:MaxPermSize=1024m”
export MEM_MAX_PERM_SIZE_64BIT
MEM_MAX_PERM_SIZE_32BIT=”-XX:MaxPermSize=1024m”
export MEM_MAX_PERM_SIZE_32BIT
本文详细介绍了如何通过调整WebLogic服务器的PermSize来解决OutOfMemoryError: PermGen space的问题,并提供了具体的操作步骤,包括修改setDomainEnv.sh文件中的MaxPermSize值。

324

被折叠的 条评论
为什么被折叠?



