博主
258
258
258
258
专辑

第十节 elasticsearch-head的安装及使用

亮子 2021-07-27 02:07:20 7259 0 0 0

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/

图片alt

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/

图片alt

4、管理数据

图片alt

参考文章