To enable SSH on VMWare ESXi, do the following:
- At the console, press Alt + F1
- Type "unsupported" and press enter (Note, you will be doing this blindly)
- You will be prompted for the root password, enter it.
- vi /etc/inetd.conf
- Go to the line for ssh (try "/ssh" to find it)
- Uncomment the ssh line (if the cursor is over the #, hit "x")
- Save the file ("wq!")
- Restart the services ("/sbin/services.sh restart")
You should now be able to ssh in as root to the server.
There is a chance that you will have to restart inetd in order for this to work:
# get the PID of inetd
ps a | grep inetd
kill -HUP inetdpid

Leave a comment