This site can't be reached
"var/log/vmware/envoy/envoy.log
in the vCenter server has the following snippets,
warning envoy[40146] [Originator@6876 sub=filter] [C15632615] remote https connections exceed > max allowed: 2048
warning envoy[40146] [Originator@6876 sub=filter] [C15632615] closing connection TCP<##.###.##.##.###:41704, ##.###.##.##.###:443>
error -> [297506] [Originator@6876 sub=IO] HandshakeCb; <SSL(<io_obj p:0x00007fb7d806d1b8, h:32, <TCP '##.###.##.##.###:41704'>, <TCP '##.###.##.##.###: 443'>>)>; error: N7Vmacore15SystemExceptionE(Connection reset by peer: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem, timeout, or service overload.)
Note:
This article does NOT apply to local http/https connections happening within the vCenter Appliance such as service to service connections over the local loopback interface. (e.g. vsan-health making calls to VUM), it provides a way to remediate the VC connection limit problem.
maxRemoteHttpsConnection
limit is reached. When this limit is reached, it may result in failed backups as part of those backup workflows. Workaround:
To Increase the maximum RemoteHttpsConnections limit. See following steps:
cp /etc/vmware-rhttpproxy/config.xml /etc/vmware-rhttpproxy/config.xml.bkp
maxRemoteHttpsConnections
under envoy tag:<config>
<envoy>
<L4Filter>
<maxRemoteHttpsConnections>3072</maxRemoteHttpsConnections>
</L4Filter>
</envoy>
</config>
“maxHttpConnections”
and “maxHttpsConnections”
in /etc/vmware-rhttpproxy/config.xml
“max_http_connections”
and “max_https_connections”
in /etc/vmware-envoy/config.yaml
Note: vCenter Server 7.x has multiline comments in the /etc/vmware-rhttpproxy/config.xml file so there is a need to uncomment the desired option when change of the value is needed
Example:
Before:
<L4Filter>
<!--
<maxRemoteHttpsConnections>2048</maxRemoteHttpsConnections>
After:
<L4Filter>
<maxRemoteHttpsConnections>3072</maxRemoteHttpsConnections>
<!--
service-control --restart rhttpproxy
kill -1 `pidof rhttpproxy`
NOTE:
While no hard limit exists to the maximum configurable limit, it is recommended to increase with caution as an overly extended limit may impact VC performance due to excessive connections and subsequent resource consumption.
Increasing to 3072 is verified and suitable for most cases. If it is need to increase to number > 3072, please contact Broadcom support so that help can be provided to understand and analyze overly excessive connections in the environment.