| Author |
How to running multiple Tomcat on one Server.
|
Gustavo Siqueira
Ranch Hand
Joined: Jun 15, 2011
Posts: 94
|
|
Hello,
I have a VPS running a Tomcat, that host a site. I would like of hosting more sites in the same server.
It's possible ?
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56185
|
|
|
You can run many web apps in one instance of Tomcat -- no need to run more than one Tomcat instance.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Gustavo Siqueira
Ranch Hand
Joined: Jun 15, 2011
Posts: 94
|
|
Hello,
Thanks you for response!
How do I do ?
Regards,
Gustavo
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56185
|
|
The easiest way is to simply drop the war files for the web apps into Tomcat's webapps folder.
For more complex configurations see the Tomcat documentation which is part of the download (and is one of the web apps shipped with Tomcat).
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14480
|
|
Note that there is a difference between running multiple sites (hosts) and running multiple apps for a site.
It's trivial to deploy multiple apps in Tomcat. Do as Bear said and drop their WAR files into the Tomcat webapps folder.
To run multiple sites, you'll need to customize the server.xml file, however. The Tomcat documentation details such things.
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
Gustavo Siqueira
Ranch Hand
Joined: Jun 15, 2011
Posts: 94
|
|
Hello,
I would like of thank to everyone for response!
I have solved by following the steps this video:
http://goo.gl/veide
Thanks you!
|
 |
 |
|
|
subject: How to running multiple Tomcat on one Server.
|
|
|