Hashicorp Vault: Install and Remove Vault

Reference – https://developer.hashicorp.com/vault/downloads

Install Vault in Ubuntu

$ wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg

$ echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list

$ sudo apt update && sudo apt install vault

Remove

sudo apt remove vault
sudo apt autoclean && sudo apt autoremove

Install Vault in RHEL/Centos

sudo yum install -y yum-utils
sudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo
sudo yum -y install vault

Install Vault in Windows

# First we will install the Vault binary using Chocolatey.
# You'll need to run this from an elevated PowerShell prompt
# Download URL - https://developer.hashicorp.com/vault/downloads

choco install vault -y

# Now let's verify it installed successfully and is in the PATH 
# environment variable
vault version 
Rajesh Kumar
Follow me
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x