> From: Vickie Troy-McKoy [mailto:vtmc...@hotmail.com] 
> Subject: Multiple Tomcat Instances with Multiple IPs

> Instead of running it on different ports, we decided to run it 
> on a different IP address.

Each Tomcat must still have a unique shutdown port configured in its <Server> 
element.

> In server.xml, I added the "address=xxx.xx.x.xx" parameter for all the ports.

That's not correct; the address attribute can only be used on <Connector> 
elements, not the <Server> element.  Also, it it had better be 
address="xxx.xx.x.xx", not "address=xxx.xx.x.xx".

> I played with the "Host name" parameter-putting in the fqn DNS 
> name and tried the IP address there.

Incorrect and unnecessary - put it back the way it was.

> I tried adding "address=xxx.xx.x.xx" for the Server shutdown port.

See above; there is no address attribute for <Server> (it's listening only on 
127.0.0.1 for the shutdown command).
 
> WARNING: Unknown default host [localhost] for connector 
> [Connector[HTTP/1.1-8080]] 
> WARNING: Unknown default host [localhost] for connector 
> [Connector[AJP/1.3-8009]]

That's because you broke your <Host> configuration; again, put it back the way 
it was.
 
 - 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to