»Starting the Vault Server
With Vault installed, the next step is to start a Vault server.
Vault operates as a client/server application. The Vault server is the only piece of the Vault architecture that interacts with the data storage and backends. All operations done via the Vault CLI interact with the server over a TLS connection.
In this page, we'll start and interact with the Vault server to understand how the server is started.
»Starting the Dev Server
First, we're going to start a Vault dev server. The dev server is a built-in, pre-configured server that is not very secure but useful for playing with Vault locally. Later in this guide we'll configure and start a real server.
To start the Vault dev server, run:
You should see output similar to that above. Vault does not fork, so it will continue to run in the foreground. Open another shell or terminal tab to run the remaining commands.
The dev server stores all its data in-memory (but still encrypted), listens on
localhost
without TLS, and automatically unseals and shows you the unseal key
and root access key. Do not run a dev server in production!
With the dev server running, do the following three things before anything else:
Launch a new terminal session.
Copy and run the
export VAULT_ADDR ...
command from the terminal output. This will configure the Vault client to talk to our dev server.Save the unseal key somewhere. Don't worry about how to save this securely. For now, just save it anywhere.
Do the same as step 3, but with the root token. We'll use this later.
»Verify the Server is Running
As instructed, copy and execute export VAULT_ADDR='http://127.0.0.1:8200'
.
Verify the server is running by running the vault status
command. This should
succeed and exit with exit code 0.
If it ran successfully, the output should look like the below:
If the output looks different, especially if the numbers are different or the Vault is sealed, then restart the dev server and try again. The only reason these would ever be different is if you're running a dev server from going through this guide previously.
We'll cover what this output means later in the guide.
»Next
Congratulations! You've started your first Vault server. We haven't stored any secrets yet, but we'll do that in the next section.
Next, we're going to read and write our first secrets.