如何在终端中退出vagrant的SSH

如何在终端中退出vagrant的SSH

按照 README 中的说明这个存储库,我应该通过安全外壳进入我创建的虚拟机,但是一旦我这样做了,我该如何退出呢?

以下是说明:

$ git clone git://github.com/honza/django-chef.git
$ cd django-chef
# add yourself to the "users" array in the Vagrantfile
$ sudo echo "127.0.0.1 example.example.com" >> /etc/hosts
$ vagrant up
$ fab vagrant:honza bootstrap  # replace with your name
$ vagrant ssh    # OK, cool
$ run            # I'm trapped! 

答案1

假设run命令在前台持续运行,你很可能可以使用 来结束它。然后可以使用或CTRL+C来终止 shell(和 SSH)会话。exitCTRL+D

答案2

如果您想通过 ssh 连接到该机器,您可以执行以下操作:

vagrant ssh

或者

homestead ssh

如果您在机器中,您可以运行命令exit来退出。

相关内容