Hello friends,
In this blog, I have explained the solution of the Issue which I have got while starting the IntegratedWeblogicServer in 12c jDeveloper.
I have got the below error, when I was trying to deploy my very first project with IntegratedWeblogicServer in 12c jDeveloper.
**************ERROR********************
[Starting IntegratedWebLogicServer.]
[waiting for the server to complete its initialization...]
Error: Could not find or load main class Solution\AppData\Roaming\JDeveloper\system12.2.1.0.42.151011.0031\DefaultDomain
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=512m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=1024m; support was removed in 8.0
Stopping Derby server...
Derby server stopped.
Process exited.
[IntegratedWebLogicServer terminated.]
**************ERROR********************
[waiting for the server to complete its initialization...]
Error: Could not find or load main class Solution\AppData\Roaming\JDeveloper\system12.2.1.0.42.151011.0031\DefaultDomain
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=512m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=1024m; support was removed in 8.0
Stopping Derby server...
Derby server stopped.
Process exited.
[IntegratedWebLogicServer terminated.]
**************ERROR********************
This is because, of the space present in domain directory name(Safal Solution) which I have created. My Domain directory is :-
C:\Users\Safal Solution\AppData\Roaming\JDeveloper\system12.2.1.0.42.151011.0031\DefaultDomain
Solution Solution Solution!!!
Go to the directory "/DefaultDomain/bin" and open the file "setStartupEnv.cmd".
Keep the -DINSTANCE_HOME path value under double quote(i.e inside " ")
Example:-
Before:
-DINSTANCE_HOME=C:\Users\Safal Solution\AppData\Roaming\JDeveloper\system12.2.1.0.42.151011.0031\DefaultDomain
After:
-DINSTANCE_HOME="C:\Users\Safal Solution\AppData\Roaming\JDeveloper\system12.2.1.0.42.151011.0031\DefaultDomain"
After updating like this, I will be able to start the IntegratedWeblogicServer in 12c jDeveloper.
Hope, this might help you.
please let me know in case you need further details.
No comments:
Post a Comment