[
https://issues.apache.org/jira/browse/TOMEE-1445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14215130#comment-14215130
]
Chris Harris commented on TOMEE-1445:
-------------------------------------
Hi, [~romain.manni-bucau].
I'm not sure what you mean by "clean installation", but let's see if my steps
qualify as a clean install:
1.) Stop TomEE
2.) rm -rf tomee-plus-1.7.0/webapps/<exploded_war_directory>
3.) rm -rf tomee-plus-1.7.0/webapps/<war_file>
4.) rm -rf tomee-plus-1.7.0/work/Catalina/localhost
5.) rm -rf tomee-plus-1.7.0/work/Catalina/<folder as result of Host alias>
6.) ...and just to remove any extra clutter, rm tomee-plus-1.7.0/logs/*
7.) copy fresh .war to the webapps directory
8.) Start TomEE.
These are the steps that I take.
O.K. So, I've attempted {appId}/{ejbJarId}/{ejbName} before after Googling the
error and coming across only about 2 unique posts, both of which you chimed in
and suggested that workaround. I've been confused on how to use that line of
config. I assume those are placeholders. I'm using just a war file, so
there's no ejb jar file in use. This may seem like a dumb question, but where
do I find the appId? It seems like the id specified in web.xml.
Also, do I need to specify a line of config per EJB?
If my app id is "os" and one of my EJB's is named ContactService.java (with no
specified id annotation), then would the config look like the following?
os/ContactService
Thank you for your help so far, Romain. You are the man!
> org.apache.openejb.DuplicateDeploymentIdException error when using mutliple
> Host elements in server.xml
> -------------------------------------------------------------------------------------------------------
>
> Key: TOMEE-1445
> URL: https://issues.apache.org/jira/browse/TOMEE-1445
> Project: TomEE
> Issue Type: Bug
> Affects Versions: 1.7.0
> Environment: CentOS, Apache HTTPd Web Server as front-end
> Reporter: Chris Harris
>
> I started receiving the following error as of TomEE 1.7.0:
> SEVERE: Unable to deploy collapsed ear in war
> StandardEngine[Catalina].StandardHost[localhost].StandardContext[/os]
> org.apache.openejb.DuplicateDeploymentIdException: Application cannot be
> deployed as it contains deployment-ids which are in use: app:
> /home/user/tomee-plus-1.7.0/webapps/os
> ContactService
> PersistenceTester
> at
> org.apache.openejb.assembler.classic.Assembler.createApplication(Assembler.java:663)
> at
> org.apache.openejb.assembler.classic.Assembler.createApplication(Assembler.java:623)
> at
> org.apache.tomee.catalina.TomcatWebAppBuilder.startInternal(TomcatWebAppBuilder.java:1248)
> at
> org.apache.tomee.catalina.TomcatWebAppBuilder.configureStart(TomcatWebAppBuilder.java:1087)
> at
> org.apache.tomee.catalina.GlobalListenerSupport.lifecycleEvent(GlobalListenerSupport.java:130)
> at
> org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
> at
> org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:90)
> at
> org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5378)
> at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
> at
> org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:901)
> at
> org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:877)
> at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:649)
> at
> org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:1083)
> at
> org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1880)
> at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
> at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
> at java.util.concurrent.FutureTask.run(Unknown Source)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
> at java.lang.Thread.run(Unknown Source)
> The relevant server.xml config:
> <Host name="localhost" appBase="webapps"
> unpackWARs="true" autoDeploy="false">
> <!-- SingleSignOn valve, share authentication between web applications
> Documentation at: /docs/config/valve.html -->
> <!--
> <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
> -->
> <!-- Access log processes all example.
> Documentation at: /docs/config/valve.html
> Note: The pattern used is equivalent to using pattern="common"
> -->
> <Valve className="org.apache.catalina.valves.AccessLogValve"
> directory="logs"
> prefix="localhost_access_log." suffix=".txt"
> pattern="%h %l %u %t "%r" %s %b" />
> </Host>
> <Host name="blah.com" appBase="/home/user/tomee-plus-1.7.0/webapps">
> <Alias>www.blah.com</Alias>
> <Context path="/os" reloadable="true"
> docBase="/home/user/tomee-plus-1.7.0/webapps/os/"/>
> <Context path="" reloadable="true"
> docBase="/home/user/public_html"/>
> <Context path="/tomee" privileged="true"
> docBase="/home/user/tomee-plus-1.7.0/webapps/tomee"/>
> </Host>
> The issue is that I can't get my website to launch in Prd anymore. It's
> looks like TomEE is attempting to launch the same web app twice and then
> running into the duplicate EJB id issue. I notice in catalina.out that the
> app is started for localhost and then my domain name.
> I can't get rid of either Host definition either. Without either, I need to
> type in my site's domain name WITH TomEE's port number to access the web app.
> That scenario will not suffice.
> I don't recall having this issue in TomEE 1.6.0.1 or 1.6.0.2.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)