-1

Trying to restart from command line weblogic server but it is picking up EAR file i deployed from Eclipse previously. Thought it was some kinda caching issue so opened/closed eclipse and cmd no help. Still picking up this EAR even when i delete it manually from the temp folder WL_User. Cant start weblogic from Eclipse as weblogic closes suddenly due to VM shutdown request and eclipse hangs on publishing state. Not sure why it does that too no error messages except BEA: VM requested Shutdown.

Very confusing how it is picking it up. Really want to understand why? Thanks for help in advance.

BatBold
  • 21
  • 1
  • 5

1 Answers1

0

Your weblogic domain is in a bad state. Normally I would suggest removing a deployment by opening the weblogic admin console and navigating to Deployments and then deleting the problematic deployment. If you can't do that, try the following:

Navigate to <domain folder>/servers/<server causing problems>

  • Delete the tmp, data, cache, and logs folders

Restart your server.

Another option (you should only use if you are really stuck) is to edit the following file:

  • <domain folder>/config/config.xml
  • search for and remove your <app-deployment>

If it still doesn't work, you have other problems with your VM. Edit the question and add more info as necessary.

Display Name is missing
  • 6,197
  • 3
  • 34
  • 46
  • Thank you for the answer. I did try deleting the folders in Admin Server. But looks like it is picking it up from the config.xml. I can see it is pointing to eclipse metadata folder. Ear AdminServer ear C:\Users\myworkspace\.metadata\.plugins\org.eclipse.core.resources\.projects\Ear\beadep\my_domain\Ear DDOnly – BatBold Sep 25 '15 at 16:35
  • What should i change it to? or should i just delete the source path? – BatBold Sep 25 '15 at 16:36
  • Wow just removing the source path line solved it. Man, worked on eclipse for long time, still learning new things. Thanks for the help – BatBold Sep 25 '15 at 16:38