https://bz.apache.org/bugzilla/show_bug.cgi?id=59868
Bug ID: 59868
Summary: Manager's output of host name and IP address are
misleading
Product: Tomcat 8
Version: 8.5.4
Hardware: PC
Status: NEW
Severity: normal
Priority: P2
Component: Manager
Assignee: [email protected]
Reporter: [email protected]
I have configured my Connector to listen to address="127.0.0.1" only. Single
hostname for this is "localhost". Though, the HTMLManager displays in Server
Information my regular host name and the IP address of the second NIC
(VirtualBox Host-Only Adapter).
Code:
try {
InetAddress address = InetAddress.getLocalHost();
args[6] = address.getHostName();
args[7] = address.getHostAddress();
} catch (UnknownHostException e) {
args[6] = "-";
args[7] = "-";
}
I would expect to display the information this Connector and Host is accepting,
remove this information altogether or document that this information does not
reflect configuration (docs/html-manager-howto.html#Server_Information).
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]