How to exit SSH of vagrant in terminal

22

5

Following the README in this repository, I am supposed to secure shell my way into a virtual machine I've created, but once I've done so, how do I get out?

Here are the instructions:

$ 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! 

michaelsnowden

Posted 2014-01-19T21:32:26.450

Reputation: 656

Answers

26

Assuming the run command stays running on the foreground, you can most probably end it with CTRL+C. Then the shell (and SSH) session can be terminated with exit or CTRL+D.

tmatilai

Posted 2014-01-19T21:32:26.450

Reputation: 1 892

2I'm using Cmder in windows 10, exit and CTRL+D worked for me, but CTRL+C didn't work. – user3731622 – 2016-02-25T22:59:17.130

Same for me. exit seems to be the best answer here. – Austen – 2019-11-12T21:25:41.207

3

If you want to ssh to the machine you can do following:

vagrant ssh

or

homestead ssh

If you are in the machine you can run the command exit to get out of it.

utdev

Posted 2014-01-19T21:32:26.450

Reputation: 159