Hi Chuck and list, The problem I have now is once I started the first Tomcat I could not start any of others if I use the same port 80xx, the log complains about the port has already been used.
On one host I have 4 different IPs 10.2.2.1 10.2.2.2 10.2.2.3 10.2.2.4 Please let me know if it's possible to setup 4 tomcat like below with 4 tomcat java processes 10.2.2.1.8080 *.* 0 0 49152 0 LISTEN 10.2.2.2.8080 *.* 0 0 49152 0 LISTEN 10.2.2.3.8080 *.* 0 0 49152 0 LISTEN 10.2.2.4.8080 *.* 0 0 49152 0 LISTEN Thanks for any comments. Regards, Ran -----Original Message----- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 09, 2007 9:14 PM To: Tomcat Users List Subject: RE: multiple Tomcat on one host with multiple IPs using the same port > From: Ran Li [mailto:[EMAIL PROTECTED] > Subject: multiple Tomcat on one host with multiple IPs using > the same port > > I need to setup 4 Tomcat on one host, this host has multiple > IPs, is it possible to set them up with multiple IPs using > the same listening port 8080? Assuming you want each instance of Tomcat to use a separate IP address, you must configure the desired IP address in each <Connector> element of each Tomcat. By default, the <Connector> address is 0.0.0.0, which indicates all IP addresses configured for the box. The <Host> elements do not need to be changed. Look here for details: http://tomcat.apache.org/tomcat-5.5-doc/config/http.html - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To start a new topic, e-mail: [email protected] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To start a new topic, e-mail: [email protected] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
