• 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

running Application acrosss multiple JVM's

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

I read regarding that an application can be run in a distributed environment.
I have only ran my application using a single server.
Can someone please expalin me with simple example how an aplication is deployed,

I am confused whether there will be more than 1 server per JVM and seperate instance of the servlet or simply the same instance is copied

Say my application is distributed across 2 networks

for each there will be separate JVM what does this exactly mean?

Someone please help me out I am not getting this concept..
 
Ranch Hand
Posts: 2874
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Its not necessary to have multiple machines, in order to run your application on multiple JVM. But it can be on different machines, as well. You can simply look at this as, an application deployed on multiple tomcat instances, per say and of course each is under its own JVM. You can refer to clustering section of Tomcat documentation. Moreover, its good to have a look at Load Balancing section as well, because clustering is not the only option of load-balancing.
 
reply
    Bookmark Topic Watch Topic
  • New Topic