Vagrant Instance Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 17: Line 17:


  vagrant status [''name''|''id'']
  vagrant status [''name''|''id'']
Also see: {{Internal|Vagrant_Environment_Operations#global-status|global-status}}


==destroy==
==destroy==

Revision as of 19:32, 17 November 2019

Internal

Overview

Instance Operations

up

https://www.vagrantup.com/docs/cli/up.html

This is the essential Vagrant command. It starts and provision the vagrant environment:

vagrant up

The backing Vagrantfile can be written in such a way that bringing the machine up creates a ~/.ssh/dev/vagranthostname configuration that can be used by ssh to connect directly. This is an example of how to achieve this: Describe the VM in a Vagrantfile.

status

vagrant status [name|id]

Also see:

global-status

destroy

Stops and deletes all traces of the vagrant machine:

vagrant destroy
vagrant destroy [name|id]

If the corresponding VM runs in AWS EC2, this terminates the instance.