英文:
Docker not running on http://0.0.0.0:8161
问题
我运行了以下命令:
docker run -p 61616:61616 -p 8161:8161 rmohr/activemq
然后输出显示:
Docker文档可以在以下地址查看:
http://0.0.0.0:8161
然而,当我访问该地址时,出现错误:
无法访问此网站
可能是 http://0.0.0.0:8161/ 的网页暂时不可用,或者它可能已经永久移至新的网址。
尝试了:http://127.0.0.1:8161/
<details>
<summary>英文:</summary>
I ran
docker run -p 61616:61616 -p 8161:8161 rmohr/activemq
and the output shows
Docker docs are viewable at:
http://0.0.0.0:8161
However when I go to this address I get an error
This site can’t be reached
The web page at http://0.0.0.0:8161/ might be temporarily down or it may have moved permanently to a new web address.
Tried: http://127.0.0.1:8161/
</details>
# 答案1
**得分**: 1
http://localhost:8161/ 或 http://127.0.0.1:8161/ 对我有效。通过 docker-machine,您可以从命令 docker-machine ip 的输出中获取虚拟机的 IP 地址。
<details>
<summary>英文:</summary>
http://localhost:8161/ or http://127.0.0.1:8161/ worked for me.
With docker-machine, you can get the IP of the VM from the command
docker-machine ip output.
</details>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论