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
In my case the solution was to edit the DOMAIN\bin\setDomainEnv.cmd
file. The following modifications were made before the server would start as intended:
-Xms
and -Xmx
values were increased-XX:PermSize
and -XX:MaxPermSize
values were increased tooand lastly, but probably most importantly
if "%JAVA_VENDOR%"=="Sun" (
conditions were changed to if "%JAVA_VENDOR%"=="Oracle" (
in order to properly recognize my JVM.Before this last modification the memory changes were only partly reflected to the initialised JVM, and this meant that the parameters regarding the PermGen Space were simply ignored.