facing perm gen space error in weblogic

后端 未结 5 742
离开以前
离开以前 2021-01-02 02:27

I am new to weblogic. After starting the server when i see administrator console and get log-in it throws below exception.

Root cause of ServletException.
ja         


        
5条回答
  •  一向
    一向 (楼主)
    2021-01-02 03:08

    I just want to share what solved the problem for me: I sourced setDomainEnv.sh and echo ${JAVA_OPTIONS} and noticed that the MEM arguments were not there.

    So I added MEM_ARGS to the last setup of the JAVA_OPTIONS.

    Like so:
    JAVA_OPTIONS="${JAVA_OPTIONS} ${MEM_ARGS}" export JAVA_OPTIONS

    Cheers

提交回复
热议问题