📜  保险库安装 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:51.186000             🧑  作者: Mango

代码示例1
#Vault Installation is a through a Single Binary
#Remember Vault latest Installation is through the manuall installation

#starting vault in development & testing mode and provides GUI access with Root token to login
vault server -dev

#To use vault from the Powershell / CMD set env variable first or make use or
#-address flag with the url detail from above step
SET VAULT_ADDR = http://127.0.0.1:8200 ----->This is default URL you can change as per your convienence

#to check from powershell 
vault status