Service-control failed. Error: Failed to start services in profile ALL. RC=1, stderr=Failed to start sps, sca, cis-license, eam, vpxd-svcs, analytics, vc-ws1a-broker, vsm services. Error: Operation timed out[FAIL] vCenter Proxy Check (Enabled) There is a proxy enabled for this vCenter, but the PNID or domain has not been included in the NO_PROXY list. In order to avoid issues with upgrades, skyline health, etc., please see the provided article. NO_PROXY list: ['www.me.de', 'do.main', 'localhost'] Documentation: https://knowledge.broadcom.com/external/article?legacyId=87793
VMware vCenter Server 8.x
This issue is caused by a syntax error (a typo) in the /etc/sysconfig/proxy file on the vCenter Server. Specifically, the letter 'Y' is missing from NO_PROXY, appearing instead as NO_PROX. (User modified the proxy with an incorrect NO_PROX configuration.)
Incorrect configuration:
# Example: NO_PROXY="www.me.de, do.main, localhost"NO_PROX="dl.broadcom.com, localhost, 127.0.0.1, .*.#######.###, .*.#######.###"
Expected configuration (correct):
# Example: NO_PROXY="www.me.de, do.main, localhost"NO_PROXY="dl.broadcom.com, localhost, 127.0.0.1, .*.#######.###, .*.#######.###"
To resolve this issue, you must correct the syntax attribute inside the proxy configuration file and restart all services.
Log in to the vCenter Server Appliance via SSH using root credentials.
Back up the existing proxy configuration file:
cp /etc/sysconfig/proxy /etc/sysconfig/proxy.bak
Open /etc/sysconfig/proxy using a text editor (such as vi):
vi /etc/sysconfig/proxy
Locate the malformed line and change NO_PROX to NO_PROXY.
NO_PROXY
Restart all services
service-control --stop --all && service-control --start --all