26

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! 

2 Answers 2

29

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.

2
  • 2
    I'm using Cmder in windows 10, exit and CTRL+D worked for me, but CTRL+C didn't work. Commented Feb 25, 2016 at 22:59
  • Same for me. exit seems to be the best answer here.
    – Austen
    Commented Nov 12, 2019 at 21:25
4

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.

1
  • Note that homestead ssh is a common alias that's specific to the homestead Vagrant box for Laravel development. Only vagrant ssh should work for this question.
    – nofinator
    Commented Dec 3, 2020 at 4:33

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .