Delete openejb web app after installing
I am using openEjb 3 integrated with Tomcat 6.
Can I delete (I mean undeploy) openejb web app after installing? Or the 开发者_如何学运维openejb web app must always exist in Tomcat? Thanks for reply.
My answer to that would be: No, you can't.
Just from trying to do it you can see that your EJBs won't even get deployed.
You can undeploy without stopping Tomcat.
- Start Tomcat
- go to homepage (
http://localhost:8080
) - Login as manager by clicking on Tomcat Manager link under Administration.
- If you don't have manager settings, add the following entry in conf/tomcat-users.xml:
<role rolename="manager"/>
<user username="tomcat" password="tomcat" roles="manager"/>
Once you login as manager, you should be able to see all apps available in Tomcat. Now you may undeploy openejb app.
精彩评论