2013-09-03 18:08:28 +00:00
|
|
|
---
|
2016-01-19 18:08:53 +00:00
|
|
|
layout: "docs"
|
2013-09-06 16:50:43 +00:00
|
|
|
page_title: "vagrant ssh - Command-Line Interface"
|
2013-09-03 18:08:28 +00:00
|
|
|
sidebar_current: "cli-ssh"
|
2016-01-19 18:08:53 +00:00
|
|
|
description: |-
|
|
|
|
The "vagrant ssh" command is used to establish an SSH session into a running
|
|
|
|
virtual machine to give you shell access.
|
2013-09-03 18:08:28 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# SSH
|
|
|
|
|
2016-04-12 11:45:10 +00:00
|
|
|
**Command: `vagrant ssh [name|id] [-- extra_ssh_args]`**
|
2013-09-03 18:08:28 +00:00
|
|
|
|
|
|
|
This will SSH into a running Vagrant machine and give you access to a shell.
|
|
|
|
|
|
|
|
If a `--` (two hyphens) are found on the command line, any arguments after
|
|
|
|
this are passed directly into the `ssh` executable. This allows you to pass
|
2013-12-19 12:23:18 +00:00
|
|
|
any arbitrary commands to do things such as reverse tunneling down into the
|
2013-09-03 18:08:28 +00:00
|
|
|
`ssh` program.
|
|
|
|
|
|
|
|
## Options
|
|
|
|
|
|
|
|
* `-c COMMAND` or `--command COMMAND` - This executes a single SSH command, prints
|
2015-04-26 00:22:10 +00:00
|
|
|
out the stdout and stderr, and exits.
|
2013-09-03 18:08:28 +00:00
|
|
|
|
|
|
|
* `-p` or `--plain` - This does an SSH without authentication, leaving
|
|
|
|
authentication up to the user.
|
2015-07-06 20:07:00 +00:00
|
|
|
|
|
|
|
## Background Execution
|
|
|
|
|
|
|
|
If the command you specify runs in the background (such as appending a `&` to
|
|
|
|
a shell command), it will be terminated almost immediately. This is because
|
|
|
|
when Vagrant executes the command, it executes it within the context of a
|
|
|
|
shell, and when the shell exits, all of the child processes also exit.
|
|
|
|
|
2016-01-19 18:08:53 +00:00
|
|
|
To avoid this, you will need to detach the process from the shell. Please
|
2015-07-06 20:07:00 +00:00
|
|
|
Google to learn how to do this for your shell. One method of doing this is
|
|
|
|
the `nohup` command.
|