[Installation, Configuration & Deployment] - When I run jbossos5, DEPLOYMENTS MISSING DEPLOYERS: Name
by zengchuan
I got jbossos5 from svn co https://svn.jboss.org/repos/jbossas/trunk/ jbossos5 Revision 57411 .When I run run.bat ,error happened.
2006-10-04 10:26:30,171 ERROR [org.jboss.system.server.profileservice.ProfileServiceBootstrap] Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
*** DEPLOYMENTS MISSING DEPLOYERS: Name
file:/E:/Java/jboss5/server/default/deploy/bsh-deployer.xml
file:/E:/Java/jboss5/server/default/deploy/ear-deployer.xml
file:/E:/Java/jboss5/server/default/deploy/ejb-deployer.xml
file:/E:/Java/jboss5/server/default/deploy/ejb3-interceptors-aop.xml
file:/E:/Java/jboss5/server/default/deploy/http-invoker.sar/invoker.war/
file:/E:/Java/jboss5/server/default/deploy/jbossweb-tomcat6.sar/ROOT.war/
file:/E:/Java/jboss5/server/default/deploy/jbossweb-tomcat6.sar/ZTClient.war/
file:/E:/Java/jboss5/server/default/deploy/jmx-console.war/
file:/E:/Java/jboss5/server/default/deploy/management/console-mgr.sar/web-console.war/
jar:file:/E:/Java/jboss5/server/default/deploy/jbossws.sar/jbossws-context.war!/
*** CONTEXTS MISSING DEPENDENCIES: Name -> Dependency{Required State:Actual State}
jboss.ejb3:service=EJB3Deployer
-> jboss.ejb:service=EJBDeployer{Start:** NOT FOUND **}
-> jboss.ejb:service=EJBDeployer{Create:** NOT FOUND **}
jboss.ws:service=DeployerInterceptorEJB21
-> jboss.ejb:service=EJBDeployer{Create:** NOT FOUND **}
-> jboss.ejb:service=EJBDeployer{Start:** NOT FOUND **}
jboss.ws:service=DeployerInterceptorEJB3
-> jboss.ejb3:service=EJB3Deployer{Start:Configured}
-> jboss.ejb3:service=EJB3Deployer{Create:Configured}
*** CONTEXTS IN ERROR: Name -> Error
jboss.ejb:service=EJBDeployer -> ** NOT FOUND **
Can you help me?Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975929#3975929
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3975929
19 years, 7 months
[Installation, Configuration & Deployment] - Re: Service types??
by PeterJ
Want to see the complete list? Here is an excerpt from org.jboss.deployment.DeploymentSorter (4.0.5.CR1 version):
public static final String[] DEFAULT_SUFFIX_ORDER = {
| ".deployer", "-deployer.xml", ".sar", "-service.xml", ".rar", "-ds.xml",
| ".har", ".jar", ".war", ".wsr", ".ear", ".zip", ".bsh", ".last"
| };
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975928#3975928
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3975928
19 years, 7 months
[Installation, Configuration & Deployment] - Re: /client vs /lib
by PeterJ
Do not place your jars in the client directory. Instead, include the necessary jar files from the client directory in your client's classpath. Yes, that means if the client is on a remote machine that you must copy the client directory (or just the jars you need) to that machine. Thus, the client directory is mainly a repository of jar files that clients might use.
Regarding lib vs server/xxx/lib, the files in lib are needed to bootstrap the app server, and the files in server/xxx/lib are what is required to run the various services provided by the server. Compare, for example, the list of jars in server/minimal/lib with the ones in server/default/lib (you can do this only if you downloaded the binary zip file, not if you used the installer jar file, though with the later I supposed you could install a minimal server).
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975925#3975925
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3975925
19 years, 7 months