Azure 容器实例中的 ElasticSearch(预览版)

ElasticSearch in Azure Container Instance (Preview)

以下命令创建 elasticsearch:latest 图像的容器实例:

$ az container create --image elasticsearch:latest --name es -g rg-es --ip-address public --memory 4 --cpu 2

根据:

$ az container show --name es -g rg-es -o table

实例是 运行,但当我浏览到分配的 IP 时,浏览器响应:"can't open the page because the server where this page is located isn't responding"。

从 Azure 门户创建容器没有任何区别。

有人遇到过这个问题吗?

默认情况下,Elastic 搜索不公开端口 80。但是你可以通过端口 —端口 9200 以公开默认端口。这可能是您遇到的问题。

谢谢!