VMware Cloud Community
PaulGap
Contributor
Contributor

How do I connect to the command line remotely?

I'm running ESX3 and want to access remotely - how can I do this?

Thanks

0 Kudos
3 Replies
cheeko
Expert
Expert

Use a SSH client like putty.

Per default remote login with the user root is disabled.

You therefore either need to

a) create a new user on the ESX host with shell access rights and login with that user (gain root rights while logged in with "su -")

b) edit the file /etc/ssh/sshd_config and change "PermitRootLogin" to yes (after that "service sshd restart")

cheeko

0 Kudos
acr
Champion
Champion

Use SSH

You will need to Update the ssh configuration file:

vi /etc/ssh/sshd_config (now find and change this line to)

PermitRootLogin yes

Now Restart the sshdaemon

service sshd restart

Message was edited by:

acr

0 Kudos
acr
Champion
Champion

Ahh, too slow..

0 Kudos