• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Jboss as window service

 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I followed all the step to sintall Jboss service using javaservice. Looks like I could install it but when I start jboss as a service I got this below error meesage, please note that if I start jboss from console, I dont have this problem
Thanks



15:30:14,476 INFO [Server] Starting JBoss (MX MicroKernel)...
15:30:14,476 INFO [Server] Release ID: JBoss [WonderLand] 3.2.3 (build: CVSTag=JBoss_3_2_3 date=200311301445)
15:30:14,476 DEBUG [Server] Using config: org.jboss.system.server.ServerConfigImpl@1e893df
15:30:14,476 DEBUG [Server] Server type: class org.jboss.system.server.ServerImpl
15:30:14,476 INFO [Server] Home Dir: C:\jboss-3.2.3
15:30:14,476 INFO [Server] Home URL: file:/C:/jboss-3.2.3/
15:30:14,476 INFO [Server] Library URL: file:/C:/jboss-3.2.3/lib/
15:30:14,476 INFO [Server] Patch URL: null
15:30:14,476 INFO [Server] Server Name: default
15:30:14,476 INFO [Server] Server Home Dir: C:\jboss-3.2.3\server\default
15:30:14,476 INFO [Server] Server Home URL: file:/C:/jboss-3.2.3/server/default/
15:30:14,476 INFO [Server] Server Data Dir: C:\jboss-3.2.3\server\default\data
15:30:14,476 INFO [Server] Server Temp Dir: C:\jboss-3.2.3\server\default\tmp
15:30:14,476 INFO [Server] Server Config URL: file:/C:/jboss-3.2.3/server/default/conf/
15:30:14,476 INFO [Server] Server Library URL: file:/C:/jboss-3.2.3/server/default/lib/
15:30:14,476 INFO [Server] Root Deployment Filename: jboss-service.xml
15:30:14,476 INFO [Server] Starting General Purpose Architecture (GPA)...
15:30:14,695 DEBUG [ModelMBeanInvoker] No persistence-manager descriptor found, null persistence will be used
15:30:14,757 DEBUG [Server] Created MBeanServer: org.jboss.mx.server.MBeanServerImpl@388993
15:30:14,757 DEBUG [Server] Boot url list: [file:/C:/jboss-3.2.3/server/default/conf/]
15:30:14,757 DEBUG [Server] Creating loader for URL: file:/C:/jboss-3.2.3/server/default/conf/
15:30:14,757 DEBUG [UnifiedClassLoader] New jmx UCL with url file:/C:/jboss-3.2.3/server/default/conf/
15:30:14,757 DEBUG [UnifiedLoaderRepository3] Adding org.jboss.mx.loading.UnifiedClassLoader3@126804e{ url=file:/C:/jboss-3.2.3/server/default/conf/ ,addedOrder=0}
15:30:14,804 DEBUG [Server] Failed to start
java.lang.ClassNotFoundException: No ClassLoaders found for: org.jboss.system.server.ServerInfo
at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:161)
at org.jboss.mx.loading.UnifiedClassLoader3.loadClassImpl(UnifiedClassLoader3.java:169)
at org.jboss.mx.loading.UnifiedClassLoader3.loadClass(UnifiedClassLoader3.java:123)
at org.jboss.mx.loading.UnifiedLoaderRepository3.loadClass(UnifiedLoaderRepository3.java:169)
at org.jboss.mx.loading.UnifiedLoaderRepository3.loadClass(UnifiedLoaderRepository3.java:569)
at javax.management.loading.DefaultLoaderRepository.loadClass(DefaultLoaderRepository.java:78)
at org.jboss.mx.server.MBeanServerImpl.instantiate(MBeanServerImpl.java:822)
at org.jboss.mx.server.MBeanServerImpl.instantiate(MBeanServerImpl.java:258)
at org.jboss.mx.server.MBeanServerImpl.createMBean(MBeanServerImpl.java:297)
at org.jboss.system.server.ServerImpl.createMBean(ServerImpl.java:411)
at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:342)
at org.jboss.system.server.ServerImpl.start(ServerImpl.java:291)
at org.jboss.Main.boot(Main.java:150)
at org.jboss.Main$1.run(Main.java:395)
at java.lang.Thread.run(Thread.java:534)
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
See this webpage . I hope it is helpful for you
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What account are you using for the JBoss service? Does that account have full privileges to JBOSS_HOME and its subdirectories?

If that doesn't help, then..
Are you using JavaService from http://javaservice.objectweb.org? I ask because there are several such tools that use the term "java service" but they all behave slightly differently. This software uses a registry entry to store the service startup parameters. You will find them at HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\xxx\Parameters, where 'xxx' is the service name. Please post the contents of that registry entry.
 
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Looks like Ashish bumped a 4 year old thread


 
Ashish solanki
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is it a joke Mr. Jaikiran? If yes then
 
Jaikiran Pai
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ashish solanki wrote:Is it a joke Mr. Jaikiran?



It's not a joke. You really posted to a thread that was started in 2005.
 
reply
    Bookmark Topic Watch Topic
  • New Topic