facing perm gen space error in weblogic

后端 未结 5 746
离开以前
离开以前 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:12

    You can try by changing the memory settings of weblogic in your server. * Go to - \Middleware\user_projects\domains\fms_domain\bin\setDomainEnv.cmd * Open the file * Change the settings

    if "%JAVA_VENDOR%"=="Sun" (
    set WLS_MEM_ARGS_64BIT=-Xms256m -Xmx512m
    set WLS_MEM_ARGS_32BIT=-Xms256m -Xmx512m
    ) else (
    set WLS_MEM_ARGS_64BIT=-Xms512m -Xmx512m
    set WLS_MEM_ARGS_32BIT=-Xms512m -Xmx512m
    )
    

    Change these settings as per your requirement and environment.

提交回复
热议问题