I undeployed my APP by using the web gui of Glassfish. But if I press undeploy for my actual APP nothing happend. In my Log File a new error occurs: Application not registered (severe). How can I undeploy my APP now correctly ?
相关问题
- ClickOnce updates all files. Why?
- Glassfish 4.1 - Latest Jersey version
- WCF service deployment - tools
- Robocopy to copy files to a remote machine
- NServiceBus - Type was not registered in the seria
相关文章
- Override env values defined in container spec
- What is a good way to deploy a Perl application?
- Stacktrace does not print in Glassfish 4.1 Cluster
- Deploying C++ game in Linux
- Can't get Jenkins to start using Tomcat
- Swift 4 - Setting a minimum deployment target
- Publish is not transforming web.config?
- How to deploy this “Python+twill+mechanize” combin
I found a simple answer:
remove all references to your app from domain.xml (in glassfish/glassfish/domains/yourDomain/config/) (see also unable to redeploy web application on glassfish3)
remove directory glassfish/glassfish/domains/yourDomain/applications/yourAPP
I had the same error, tried what mr.wolle suggested but on step 1 I couldn't really find the web module as suggested in the other post , not sure if it's because I'm using glassfish 4 or because I uploaded my app to "/" in the context-root
So I did the following:
searched for my app name using ctrl + w (a bit troublesome on windows since it just suggesting to close the window so did it on my mac).
deleted the first result which is a single line with your app name, mine is "login":
deleted all of the following lines which is related to my "login" app:
tried to undeploy (not sure if that had any effect)
reset the server - done, the app *.war file was deleted (again not sure if it was due to stage 4 or not so just try it).