How to access externally to consul UI

后端 未结 6 1821
小蘑菇
小蘑菇 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:34

    You can use socat in this case.

    socat -d -d TCP-L:8500,bind=172.16.93.128,fork TCP:localhost:8500 &

    where 172.16.93.12 is my IP.

提交回复
热议问题