Posts

Showing posts from April, 2012

Running different JBoss instances as separate windows service for multi-instance JBoss configuration

Image
* Deploying JBoss instance as separate windows services * Actually in my last couple of posts, I have explained how to cofigure JBoss for multi-instance run (like single machine-single JBoss with different instances OR single machine-multiple JBoss - multiple instances). So here I will explain how to deploy them as separate windows services, to start/stop/restart them independently.  Note - •    You must have necessary files, for installing JBoss as service.(In case you don't, Please read my previous Blog post - click here ). •    You have properly configured JBoss multi instance configurations.(Please read my previous posts if you don't know how to). Steps :- 1)  In order to run each JBoss instance as a separate windows service, you must have a separate service wrapper for each JVM run. i.e. there should be a separate service.bat file for each instance of JBoss. So copy, paste & rename these service.b...

Running Multiple Eclipse J2EE Workspaces with multi-instance JBoss configuration

Image
In my previous article I had explained how to configure JBoss for multi instance run. (If you have not configured your JBoss, please read to my previous article) While running your Java project on JBoss through eclipse, we first need to create a server in eclipse which should point to your multi-instance configured JBoss. * Then in its properties it will ask for few things like - runtime environment, Launch configuration details, server properties like JNDI port, HTTP port, server configuration. * So as shown in above screen shot, fill in your proper values. a . For HTTP port, JNDI port - refer to your binding xml file. b. For server configuration, put name of your server configuration folder like node1, node2, all, minimal, etc. **server configuration value is important because it will decide where to publish your jar/war/ear of current project (I mean in which server configuration directory). **If you put this value wrong, then it will publish your project t...

How to run multiple instances of JBoss, JBoss multinode / Clustered Deployment

Image
*** Running Multiple Instances of single/different  JBoss on same machine *** IMP Note - *  This article is written considering JBoss 4.2.2 into account.                         * For other versions, process may vary from little to a lot different, depending upon which version of JBoss you are dealing with.                        * For running multiple instance JBoss in production environment, it needs to have good system resources, make sure you have them. Many times there is a situation when we want to run same/different ear/war/jar (i.e. any java application), on same machine but as different instances so as to separate them all together. So here are the steps for configuring your multi instance JBoss :-  Prerequisites   & Caution   – *   JBoss's configuration profiles like default/all/minimal/prod...