2015-04-07 02:01:15 +00:00
|
|
|
---
|
|
|
|
layout: "intro"
|
2017-07-14 15:15:22 +00:00
|
|
|
page_title: "Install Vault - Getting Started"
|
2015-04-07 02:01:15 +00:00
|
|
|
sidebar_current: "gettingstarted-install"
|
|
|
|
description: |-
|
|
|
|
The first step to using Vault is to get it installed.
|
|
|
|
---
|
|
|
|
|
|
|
|
# Install Vault
|
|
|
|
|
|
|
|
Vault must first be installed on your machine. Vault is distributed as
|
|
|
|
a [binary package](/downloads.html) for all supported platforms and
|
|
|
|
architectures. This page will not cover how to compile Vault from source,
|
2015-04-28 20:00:11 +00:00
|
|
|
but compiling from source is covered in the [documentation](/docs/install/index.html)
|
2015-04-07 02:01:15 +00:00
|
|
|
for those who want to be sure they're compiling source they trust into
|
|
|
|
the final binary.
|
|
|
|
|
|
|
|
## Installing Vault
|
|
|
|
|
|
|
|
To install Vault, find the [appropriate package](/downloads.html) for
|
|
|
|
your system and download it. Vault is packaged as a zip archive.
|
|
|
|
|
|
|
|
After downloading Vault, unzip the package. Vault runs as a single binary
|
|
|
|
named `vault`. Any other files in the package can be safely removed and
|
|
|
|
Vault will still function.
|
|
|
|
|
2016-12-14 15:15:26 +00:00
|
|
|
The final step is to make sure that the `vault` binary is available on the `PATH`.
|
2016-01-14 18:42:47 +00:00
|
|
|
See [this page](https://stackoverflow.com/questions/14637979/how-to-permanently-set-path-on-linux)
|
2015-04-07 02:01:15 +00:00
|
|
|
for instructions on setting the PATH on Linux and Mac.
|
2016-01-14 18:42:47 +00:00
|
|
|
[This page](https://stackoverflow.com/questions/1618280/where-can-i-set-path-to-make-exe-on-windows)
|
2015-04-07 02:01:15 +00:00
|
|
|
contains instructions for setting the PATH on Windows.
|
|
|
|
|
|
|
|
## Verifying the Installation
|
|
|
|
|
|
|
|
After installing Vault, verify the installation worked by opening a new
|
2016-12-14 15:15:26 +00:00
|
|
|
terminal session and checking that the `vault` binary is available. By executing
|
2015-04-15 15:29:02 +00:00
|
|
|
`vault`, you should see help output similar to the following:
|
2015-04-07 02:01:15 +00:00
|
|
|
|
2017-09-21 17:39:26 +00:00
|
|
|
```text
|
2015-04-15 15:29:02 +00:00
|
|
|
$ vault
|
2017-09-13 01:48:52 +00:00
|
|
|
Usage: vault <command> [args]
|
2015-04-15 15:29:02 +00:00
|
|
|
|
2015-04-28 16:59:47 +00:00
|
|
|
Common commands:
|
2017-09-13 01:48:52 +00:00
|
|
|
read Read data and retrieves secrets
|
|
|
|
write Write data, configuration, and secrets
|
|
|
|
delete Delete secrets and configuration
|
|
|
|
list List data or secrets
|
|
|
|
login Authenticate locally
|
|
|
|
server Start a Vault server
|
|
|
|
status Print seal and HA status
|
|
|
|
unwrap Unwrap a wrapped secret
|
2015-04-28 16:59:47 +00:00
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
Other commands:
|
|
|
|
audit Interact with audit devices
|
|
|
|
auth Interact with auth methods
|
|
|
|
lease Interact with leases
|
|
|
|
operator Perform operator-specific tasks
|
|
|
|
path-help Retrieve API help for paths
|
|
|
|
policy Interact with policies
|
|
|
|
secrets Interact with secrets engines
|
|
|
|
ssh Initiate an SSH session
|
|
|
|
token Interact with tokens
|
2015-04-07 02:01:15 +00:00
|
|
|
```
|
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
If you get an error that the binary could not be found, then your `PATH`
|
|
|
|
environment variable was not setup properly. Please go back and ensure that your
|
|
|
|
`PATH` variable contains the directory where Vault was installed.
|
2015-04-07 02:01:15 +00:00
|
|
|
|
|
|
|
Otherwise, Vault is installed and ready to go!
|
2016-12-14 15:13:15 +00:00
|
|
|
|
2017-09-21 17:39:26 +00:00
|
|
|
## Command Completion
|
|
|
|
|
|
|
|
Vault also includes command-line completion for subcommands, flags, and path
|
|
|
|
arguments where supported. To install command-line completion, you must be using
|
|
|
|
Bash or ZSH. Unfortunately other shells are not supported at this time.
|
|
|
|
|
|
|
|
To install completions, run:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ vault -autocomplete-install
|
|
|
|
```
|
|
|
|
|
|
|
|
This will install the helpers in your `~/.bashrc` or `~/.zshrc` automatically.
|
|
|
|
Then restart your terminal or reload your shell:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ exec $SHELL
|
|
|
|
```
|
|
|
|
|
|
|
|
Now when you type `vault <tab>`, Vault will suggest options. This is very
|
|
|
|
helpful for beginners and advanced Vault users.
|
|
|
|
|
2016-12-14 15:39:45 +00:00
|
|
|
## Next
|
|
|
|
|
2016-12-14 15:13:15 +00:00
|
|
|
Now Vault is installed we can start our first Vault server! [Let's do
|
|
|
|
that now](/intro/getting-started/dev-server.html).
|