Skip to main content

Posts

Showing posts from July, 2025

Enable MOB for vCenter version 9.0

Connect to your VCSA via SSH Backup the VPXD Configuration file # cp /etc/vmware-vpx/vpxd.cfg /var/core/vpxd.cfg_backup Edit the Configuration File: Open the vpxd.cfg file using a text editor (e.g., vi) # vi /etc/vmware-vpx/vpxd.cfg Identify the flag "enableDebugBrowse".If it's set to false or missing, change it or add it to true as shown below    <vpxd>    ...      <enableDebugBrowse>true</enableDebugBrowse>       ...    </vpxd> Save and close the file Restart the vCenter Server Service (vpxd) # service-control --stop vpxd # service-control --start vpxd