• 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

Hudson: Deploy to jBoss

 
Ranch Hand
Posts: 209
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am trying to run a plan in Hudson to:
* build the project
* stop the running jBoss server
* copy the build project to the jBoss server
* start the jBoss server

Is this possible to be done using Hudson?

Thanks,

Niall
 
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
Which version of JBoss AS? The "how to" will depend on the exact version.

Did you look at the list of plugins available in Hudson? In Jenkins there is a JBoss Management Plugin that should be able to do what you want.

Finally, since what you are asking for can be accomplished using build scripts, you can always incorporate the steps into your build script. After all, Hudson/Jenkins is just a glorified cron system with a web interface and convenient plugins. You can get it to do anything if you are willing to write the scripts to do it.
 
Niall Loughnane
Ranch Hand
Posts: 209
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

the version of jBoss that i'm trying to stop/deploy/start is: jboss-eap-5.1

I have a build script that when executed on the linux console, starts the jBoss successfully, but when i add a call to this script, the script runs but jBoss isn't successfully started and no information is available to say why it hasnt started,

Thanks for the information,

Niall
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic