Hashicorp Vault
Download, Install and Running
Create folders /apps/vault, /apps/vault/config, /apps/vault/bin
Download it from https://releases.hashicorp.com/vault/1.12.2/vault_1.12.2_linux_amd64.zip
Unzip and extract executable into /apps/vault/bin/vault
Create folder /apps/vault/config and put vault.json file with below contents
{
"backend": {"file": {"path": "/apps/vault/data"}},
"listener": {"tcp": {"address": "0.0.0.0:8200", "tls_disable": 1}},
"default_lease_ttl": "168h",
"max_lease_ttl": "720h",
"api_addr" : "http://0.0.0.0:8200",
"ui": true,
"disable_mlock":true
}
Last updated