2017-06-22 26 views
0

我試着去建立一個碼頭工人容器我的金庫/領事說話,但出現以下錯誤: -調和無法與領事後端

2017/06/22 18:15:58.335293 [WARN ] physical/consul: reconcile unable to talk with Consul backend: error=service registration failed: Put http://127.0.0.1:8500/v1/agent/service/register: dial tcp 127.0.0.1:8500: getsockopt: connection refused 

這裏是我的金庫配置文件。

storage "consul" { 
    address = "127.0.0.1:8500" 
    redirect_addr = "http:/127.0.0.1:8500" 
    path = "vault" 
    scheme = "http" 
} 

listener "tcp" { 
    address  = "127.0.0.1:8200" 
    tls_disable = 1 
} 

#telemetry { 
# statsite_address = "127.0.0.1:8125" 
# disable_hostname = true 
#} 

回答