github.com/ncodes/nomad@v0.5.7-0.20170403112158-97adf4a74fb3/website/source/intro/getting-started/install.html.md (about) 1 --- 2 layout: "intro" 3 page_title: "Install Nomad" 4 sidebar_current: "getting-started-install" 5 description: |- 6 The first step to using Nomad is to get it installed. 7 --- 8 9 # Install Nomad 10 11 The task drivers that are available to Nomad vary by operating system, 12 for example Docker is only available on Linux machines. To simplify the 13 getting started experience, we will be working in a Vagrant environment. 14 Create a new directory, and download [this `Vagrantfile`](https://raw.githubusercontent.com/hashicorp/nomad/master/demo/vagrant/Vagrantfile). 15 16 ## Vagrant Setup 17 18 Note: To use the Vagrant Setup first install Vagrant following these instructions: https://www.vagrantup.com/docs/installation/ 19 20 Once you have created a new directory and downloaded the `Vagrantfile` 21 you must create the virtual machine: 22 23 $ vagrant up 24 25 This will take a few minutes as the base Ubuntu box must be downloaded 26 and provisioned with both Docker and Nomad. Once this completes, you should 27 see output similar to: 28 29 Bringing machine 'default' up with 'vmware_fusion' provider... 30 ==> default: Checking if box 'puphpet/ubuntu1404-x64' is up to date... 31 ==> default: Machine is already running. 32 33 At this point the Vagrant box is running and ready to go. 34 35 ## Verifying the Installation 36 37 After starting the Vagrant box, verify the installation worked by connecting 38 to the box using SSH and checking that `nomad` is available. By executing 39 `nomad`, you should see help output similar to the following: 40 41 ``` 42 $ vagrant ssh 43 ... 44 45 vagrant@nomad:~$ nomad 46 47 usage: nomad [--version] [--help] <command> [<args>] 48 49 Available commands are: 50 agent Runs a Nomad agent 51 agent-info Display status information about the local agent 52 alloc-status Display allocation status information and metadata 53 client-config View or modify client configuration details 54 eval-status Display evaluation status and placement failure reasons 55 fs Inspect the contents of an allocation directory 56 init Create an example job file 57 inspect Inspect a submitted job 58 logs Streams the logs of a task. 59 node-drain Toggle drain mode on a given node 60 node-status Display status information about nodes 61 plan Dry-run a job update to determine its effects 62 run Run a new job or update an existing job 63 server-force-leave Force a server into the 'left' state 64 server-join Join server nodes together 65 server-members Display a list of known servers and their status 66 status Display status information about jobs 67 stop Stop a running job 68 validate Checks if a given job specification is valid 69 version Prints the Nomad version 70 ``` 71 72 If you get an error that Nomad could not be found, then your Vagrant box 73 may not have provisioned correctly. Check for any error messages that may have 74 been emitted during `vagrant up`. You can always destroy the box and 75 re-create it. 76 77 ## Next Steps 78 79 Vagrant is running and Nomad is installed. Let's [start Nomad](/intro/getting-started/running.html)! 80 81