以下命令创建elasticsearch的容器实例:latest image:
$ 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时,浏览器会响应:“无法打开页面,因为此页面所在的服务器没有响应”。
从azure门户创建容器没有任何区别。
有没有人遇到过这个问题?
答案 0 :(得分:1)
默认情况下,弹性搜索不会公开端口80。但你可以通过端口 -port 9200公开默认端口。这可能是你遇到的问题。
谢谢!