How to access externally to consul UI

后端 未结 6 1820
小蘑菇
小蘑菇 2020-12-24 07:54

How can I access to consul UI externally?

I want to access consul UI writing

:8500

I have try doing

6条回答
  •  离开以前
    2020-12-24 08:26

    Finally I find the solution. Add to the config file with the bind addr that is the IP of the machine, and the client_addr that is the hosts he listen to. So I use 0.0.0.0 to listen to all the IPs.

    "bind_addr":"",
    "client_addr":"0.0.0.0",
    

提交回复
热议问题