Skip to main content
  1. Tags/

HashiCorp

Vault Installation

·2 mins
Full official documentation is on https://learn.hashicorp.com/vault/operations/ops-deployment-guide 1. Install Vault # Run the following commands on a freshly installed Debian Stretch sudo apt-get update && sudo apt-get install -y unzip libcap2-bin curl VAULT_VERSION="1.4.2" curl --silent --remote-name https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_linux_amd64.zip curl --silent --remote-name https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_SHA256SUMS curl --silent --remote-name https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_SHA256SUMS.sig unzip vault_${VAULT_VERSION}_linux_amd64.zip sudo chown root:root vault sudo mv vault /usr/local/bin/ 2. Make sure the setup is working # vault --version you should see the following output: