Change agent's default port number to 8100

This commit is contained in:
vishalnayak 2019-02-26 10:02:12 -05:00
parent 5b5ec851c7
commit f04b4d1668
2 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@ func tcpListener(config map[string]interface{}, _ io.Writer, ui cli.Ui) (net.Lis
var addr string
addrRaw, ok := config["address"]
if !ok {
addr = "127.0.0.1:8300"
addr = "127.0.0.1:8100"
} else {
addr = addrRaw.(string)
}

View File

@ -152,7 +152,7 @@ cache {
}
listener "tcp" {
address = "127.0.0.1:8300"
address = "127.0.0.1:8100"
tls_disable = true
}
}
@ -162,4 +162,4 @@ cache {
Agent's listener address will be picked up by the CLI through the
`VAULT_AGENT_ADDR` environment variable. This should be a complete URL such as
"http://127.0.0.1:8300".
"http://127.0.0.1:8100".