Search code examples
consul

How to overcome issue 500 (The backend responded with an error) in consul?


Hi on my macbook I am using consul version 1.8.0

and with this config I launch (consul agent -config-file desky.json):

{
 "node_name": "desky.local",
 "ui": true,
 "retry_join": ["172.20.20.31"],
 "advertise_addr": "172.20.20.1",
 "data_dir": "/tmp/consul"
}

I know this issue is reported here but it seems people are still having issue and not reply of it having fixed. https://github.com/hashicorp/consul/issues/7288

in the commandline of my macbook where I run consul agent I get the following log with some errors right at the launch.

 2020-08-31T18:04:17.048+0100 [INFO]  agent: Retry join is supported for the following discovery methods: cluster=LAN discovery_methods="aliyun aws azure digitalocean gce k8s linode mdns os packet scaleway softlayer tencentcloud triton vsphere"
    2020-08-31T18:04:17.048+0100 [INFO]  agent: Joining cluster...: cluster=LAN
    2020-08-31T18:04:17.048+0100 [INFO]  agent: started state syncer
==> Consul agent running!
    2020-08-31T18:04:17.048+0100 [INFO]  agent: (LAN) joining: lan_addresses=[172.20.20.31]
    2020-08-31T18:04:17.048+0100 [WARN]  agent.client.manager: No servers available
    2020-08-31T18:04:17.048+0100 [ERROR] agent.anti_entropy: failed to sync remote state: error="No known Consul servers"
    2020-08-31T18:04:17.051+0100 [INFO]  agent.client.serf.lan: serf: EventMemberJoin: consul-server 172.20.20.31
    2020-08-31T18:04:17.051+0100 [INFO]  agent.client: adding server: server="consul-server (Addr: tcp/172.20.20.31:8300) (DC: dc1)"
    2020-08-31T18:04:17.051+0100 [INFO]  agent: (LAN) joined: number_of_nodes=1
    2020-08-31T18:04:17.051+0100 [INFO]  agent: Join cluster completed. Synced with initial agents: cluster=LAN num_agents=1
    2020-08-31T18:04:18.584+0100 [ERROR] agent.client: RPC failed to server: method=Catalog.NodeServiceList server=172.20.20.31:8300 error="rpc error making call: rpc: can't find method Catalog.NodeServiceList"
    2020-08-31T18:04:18.591+0100 [INFO]  agent: Synced node info
    2020-08-31T18:04:19.476+0100 [INFO]  agent: Newer Consul version available: new_version=1.8.3 current_version=1.8.0

Solution

  • well, Hashicorp should address this as an possible example when the error is thrown,

    I used this on the consul server side :

    -bind 0.0.0.0
    -client 0.0.0.0
    

    that fixed this issue.