开发者

Delete openejb web app after installing

开发者 https://www.devze.com 2023-02-17 15:49 出处:网络
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.

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.

  1. Start Tomcat
  2. go to homepage (http://localhost:8080)
  3. Login as manager by clicking on Tomcat Manager link under Administration.
  4. 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.

0

精彩评论

暂无评论...
验证码 换一张
取 消