mirror of
https://github.com/containers/podman.git
synced 2025-05-31 07:27:13 +08:00

allow users to specify what username to use when ssh-ing into the vm. If the username flag is set, the username will be the flag value. If the flag is not set and the the vm name is specified, the default user of the vm will be used. if the flag is not set, and the vm name is not specified, then the username of the default connection will be used. Signed-off-by: Ashley Cui <acui@redhat.com>
56 lines
1.1 KiB
Markdown
56 lines
1.1 KiB
Markdown
% podman-machine-ssh(1)
|
|
|
|
## NAME
|
|
podman\-machine\-ssh - SSH into a virtual machine
|
|
|
|
## SYNOPSIS
|
|
**podman machine ssh** [*options*] [*name*] [*command* [*arg* ...]]
|
|
|
|
## DESCRIPTION
|
|
|
|
SSH into a Podman-managed virtual machine and optionally execute a command
|
|
on the virtual machine. Unless using the default virtual machine, the
|
|
first argument must be the virtual machine name. The optional command to
|
|
execute can then follow. If no command is provided, an interactive session
|
|
with the virtual machine is established.
|
|
|
|
|
|
## OPTIONS
|
|
|
|
#### **--help**
|
|
|
|
Print usage statement.
|
|
|
|
#### **--username**=*name*
|
|
|
|
Username to use when SSH-ing into the VM.
|
|
|
|
## EXAMPLES
|
|
|
|
To get an interactive session with the default virtual machine:
|
|
|
|
```
|
|
$ podman machine ssh
|
|
```
|
|
|
|
To get an interactive session with a VM called `myvm`:
|
|
```
|
|
$ podman machine ssh myvm
|
|
```
|
|
|
|
To run a command on the default virtual machine:
|
|
```
|
|
$ podman machine ssh rpm -q podman
|
|
```
|
|
|
|
To run a command on a VM called `myvm`:
|
|
```
|
|
$ podman machine ssh myvm rpm -q podman
|
|
```
|
|
|
|
## SEE ALSO
|
|
podman-machine (1)
|
|
|
|
## HISTORY
|
|
March 2021, Originally compiled by Ashley Cui <acui@redhat.com>
|