ESXi hosts disconnecting after changing IP address of vCenter
book
Article ID: 380515
calendar_today
Updated On:
Products
VMware vSphere ESXiVMware vCenter Server
Issue/Introduction
Managed host disconnects from VMware vCenter Server.
Managed hosts enter Not Responding mode for 90 seconds repeatedly.
vCenter Server does not receive heartbeats from the ESXi hosts.
VirtualCenter.AutoManagedIPV4 points to an incorrect VC IP address.
The new IP address of the vCenter is not properly updated in the database of the vCenter. To verify this connect to the VCDB and run the following query:
Run the below queries to update the old IP with the new, desired IP (where #.#.#.# is the new IP address of vCenter)
update vpx_parameter set value = '#.#.#.#' where name = 'VirtualCenter.AutoManagedIPV4';
update vpx_parameter set value = '#.#.#.#' where name = 'VirtualCenter.ManagedIP';
update vpx_host set management_ip = '#.#.#.#' where id = '0';
update vpx_host set local_ip_address = '#.#.#.#' where id = '0';
Exit the database with "\q" and start the vpxd service