Is it possible to run the multiple instance of jetty runner at the same time.Like if the multiple user likes to start different war in the same server(all using jetty),the jetty has to execute all the requesting war at the same time.Any idea about implementing this?.
Share
You need to give it different ports and also set the JETTY_RUN variable differently for each of them otherwise they’ll try to use the same pid file and won’t be able to start.
I personally found that launching multiple instances creates a very high load on the server so I prefer just 1 with multiple contexts.