Change agent's port to 8007 (#6348)

This commit is contained in:
Vishal Nayak 2019-03-05 12:57:17 -05:00 committed by GitHub
parent 6719ede26a
commit c14e61c16e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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:8100"
addr = "127.0.0.1:8007"
} else {
addr = addrRaw.(string)
}

View File

@ -159,7 +159,7 @@ cache {
}
listener "tcp" {
address = "127.0.0.1:8100"
address = "127.0.0.1:8007"
tls_disable = true
}
}
@ -169,4 +169,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:8100".
"http://127.0.0.1:8007".