A Microsoft cloud service that enables deployment of Azure services across hybrid and multicloud environments.
Omkar Chalke hi and thx for join us at Q&A :)
yeah AZCM0101 + proxy stuck activating… thats usually not random, something on that host is blocking it
since install works but config fails > agent is fine, connection/setup is breaking
first thing id check network. arc agent needs outbound https to Azure
if that server has:
- proxy
- firewall
- restricted outbound
then proxy service just sits there activating forever
quick test:
curl https://management.azure.com
if that fails > thats ur problem
second common one broken proxy config inside arc
check:
/opt/azcmagent/config/agentconfig.json
or run:
azcmagent show
if proxy is set but unreachable > it will hang exactly like u described
u can reset it:
azcmagent config clear proxy.url
third thing (very common tbh) time / cert issues
if server time is off > TLS fails > config dies
check:
timedatectl
also check service logs, they usually tell the real story:
journalctl -u azcmagent -f
or:
/var/opt/azcmagent/log/azcmagent.log
u will probably see timeout or TLS error there
important detail u said: only ONE server
that basically confirms its not Azure side its something local on that machine:
- network rules
- proxy
- DNS
- time sync
tldr agent installs fine > config fails > almost always outbound connectivity or proxy misconfig
rgds,
Alex