Running VMWare Remote Console outside the browser

Firefox 3.6 update broke my VMWare WebAccess.

Since I updated to Firefox 3.6, I have not been able to run the vmware remote console plugin anymore. Running Linux, this is a pretty important program, as there is no vSphere client for Linux.

How to run VMWare Console from the bash shell?

cd /tmp
IP=the.esx.srv.ip # < fill in esx server ip address here
wget --no-check-certificate https://$IP/ui/plugin/vmware-vmrc-linux-x86.xpi
mv vmware-vmrc-linux-x86.xpi vmware-vmrc-linux-x86.zip
cd ~
mkdir -p bin/vmwareconsole # make directory bin in your own homedir
cd bin/vmwareconsole
unzip /tmp/vmware-vmrc-linux-x86.zip
cd ~/bin
ln -s vmwareconsole/plugins/vmware-vmrc . # make a symlink for easy access
vmware-vmrc # run the console

© GeekLabInfo Running VMWare Remote Console outside the browser is a post from GeekLab.info. You are free to copy materials from GeekLab.info, but you are required to link back to http://www.geeklab.info

1 Star2 Stars3 Stars4 Stars5 Stars (11 votes, average: 5.00 out of 5)
Loading...

Enable web access to VMWare ESX 4

The first time I tried to access the VMWare ESX 4 web client, I got this 503 Service unavailable error, which made me think I broke something. But on the second install, I got the exact same message.

While this is not important for most Windows users, as a Linux user I need this entry as there is no vSphere client for Linux.

In a default installation VMWare ESX 4.0 appears not to be running all required daemons to connect to the web client.

So what to do?

  • Log on to the server over SSH (console access)
  • Type service vmware-webAccess status to check the current status of the webAccess daemon
  • Type service vmware-webAccess start to start the webAccess daemon
  • run /sbin/chkconfig –level 345 vmware-webAccess on to make webAccess start automatically on booting the ESX server
  • Make sure to firewall the ESX management to prevent abuse.
  • © GeekLabInfo Enable web access to VMWare ESX 4 is a post from GeekLab.info. You are free to copy materials from GeekLab.info, but you are required to link back to http://www.geeklab.info

    1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 3.00 out of 5)
    Loading...