Login Vagrant VM using Xshell

2021/6/5 7:22:05

本文主要是介绍Login Vagrant VM using Xshell,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Connect Vagrant VM by using Xshell

1. View your vagrant ssh-config

type this commend to view your vagrant ssh-config:

vagrant ssh-config

you will get some info like this:

Host default
HostName 127.0.0.1
User vagrant
Port 2222
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile F:/Cygwin/home/jmh/ubuntu/.vagrant/machines/default/virtualbox/private_key
IdentitiesOnly yes
LogLevel FATAL

remember HostName, post.

2. Modify sshd_config file

open sshd_config using vim:

sudo vim /etc/ssh/sshd_config

Uncomment two rows:

  • PermitRootLoin: change the following value to yes;
  • PasswordAuthentication: change the following value to yes.

3. Restart the ssh service

input commend to restart ssh service:

systemctl restart sshd

you may encounter a password request and you forget your password, you can:

  1. login in root;
  2. type password
  3. input your new password

4. Login using Xshell

then you can login your Vagrant VM now!

5. Useful References

  • Very detailed
  • How to change password


这篇关于Login Vagrant VM using Xshell的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程