1、官方搜索
https://www.docker.com/products/docker-hub
2、 使用docker的集成好的elasticsearch-head
# docker run -p 9100:9100 mobz/elasticsearch-head:5
docker容器下载成功并启动以后,运行浏览器打开http://localhost:9100/

3、使用git安装elasticsearch-head
# yum install -y npm
# git clone git://github.com/mobz/elasticsearch-head.git
# cd elasticsearch-head
# npm install
# npm run start
- 检查端口是否起来
netstat -antp |grep 9100
- 浏览器访问测试是否正常
http://IP:9100/

4、管理数据
