To determine if an ESX/ESXi host is currently in maintenance mode:
ESX: # vimsh -n -e /hostsvc/hostsummary | grep inMaintenanceModeTo exit from pending maintenance mode, try one of the following options:
Disconnect the vSphere Client (close it) and reconnect to the ESX host to see if the option to exit maintenance mode appears. If this works, there is a known issue with the vSphere Client when refreshing the information.
vimsh
or vim-cmd
command to exit maintenance mode.
ESX: # vimsh -n -e /hostsvc/maintenance_mode_exitRestart the Management agents on the host. For more information, see
/var/log/vmware/hostd.log
to determine if the hosted management agent is vmware-authd
experiencing issues connecting to the service. [VpxVmdbCnx] Authd error: 514 Error connecting to hostd-vmdb service instance.
[VpxVmdbCnx] Failed to connect to host :902. Check that authd is running correctly (lib/connect error 11)
vmware-authd
and xinetd
services using the following commands:# chkconfig vmware-authd off
# service xinetd restart
# chkconfig --level 3 vmware-authd on
# service xinetd restart
If these steps do not resolve the issue, create a support ticket with VMware Support for further investigation.