7

After installing VMware Server I get the following error when I try to access the VMware web-based server manager:

The VMware Infrastructure Web Service at "http://localhost:8222/sdk" is not responding

Daniel O
  • 2,810
  • 3
  • 28
  • 35

3 Answers3

7

Go into the services manager and check that the 'VMware Host Agent' service is running. If not, then start it and then try browsing to the site again.

Daniel O
  • 2,810
  • 3
  • 28
  • 35
3

Vmware Hostd was not working for me either.

However, in trying to start the service it stopped automatically. Typically when this happens it is because there is an error in your config.xml. C:\ProgramData\VMware\VMware Server\hostd\config.xml

In my case, checking the logs at: C:\ProgramData\VMware\VMware Server

showed it erroring out after "Trying hostsvc".

Searching the config.xml for hostsvc showed references to several things, the first thing was the datastore. In checking my datastores.xml file: C:\ProgramData\VMware\VMware Server\hostd\datastores.xml .

I found it full of all sorts of random characters instead of a properly formed XML document.

Renaming datastores.xml to datastorex.xml.bad allowed me to start the service. At which point I had to add back my datastores through the GUI.

Hopefully this will help someone else out. I did not find any other references in Google to this issue.

dLOgan
  • 31
  • 1
  • Thank you - my datastores.xml file was just empty. Renaming it let me start the host service, and then everything worked after that. – Julian Melville Jun 16 '10 at 05:16
1

Try accessing via "http://localhost:8222" without the /sdk. You can also try the secure site via "https://localhost:8333".

Greg Laws
  • 11
  • 2