> Hello.
> I have a server and 4 IP addressess 10.10.10.10, 10.10.10.11,
[quoted text clipped - 4 lines]
>
> Robert
>> I have a server and 4 IP addressess 10.10.10.10, 10.10.10.11,
>> 10.10.10.12, 10.10.10.13
>> Can i run 4 tomcats on port 80 on 4 different IP addressess?
> Assuming you mean on the same machine, of course not - only one
> listener on port 80 at a time.
With different IP addresses ofcourse he can.
Arne
William Brogden - 23 Aug 2006 17:24 GMT
>>> I have a server and 4 IP addressess 10.10.10.10, 10.10.10.11,
>>> 10.10.10.12, 10.10.10.13
[quoted text clipped - 4 lines]
>
> With different IP addresses ofcourse he can.
OK - how can you have 4 instances of Tomcat on one machine
all listening to the same port?
Every time I try to start Tomcat with another instance already running
I get an immediate error.
Bill
Arne Vajhøj - 24 Aug 2006 02:00 GMT
>>> Assuming you mean on the same machine, of course not - only one
>>> listener on port 80 at a time.
[quoted text clipped - 6 lines]
> Every time I try to start Tomcat with another instance already running
> I get an immediate error.
4 different IP addresses.
4 Tomcat instances.
Each Tomcat instance server.xml specify it to listen
at one specific IP adress port 80.
If you do not specific IP address then it default
listen on all IP addresses.
Arne
William Brogden - 24 Aug 2006 15:18 GMT
>>>> Assuming you mean on the same machine, of course not - only one
>>>> listener on port 80 at a time.
[quoted text clipped - 16 lines]
>
> Arne
My problem was I thought the in-line documentation in server.xml
explained all the options for a Connector configuration. Turns out
they left out the use of the "address" attribute. I should have
been looking at this page:
http://tomcat.apache.org/tomcat-5.0-doc/config/http.html
Bill