全文搜索引擎ElasticSearch学习记录:mac下安装

时间:2022-06-04 18:29:47

 

  最近开发组培训了ElasticSearch,准备开展新项目,我也去凑了下热闹,下面把学习过程记录一下。

一、安装

  1、环境需要jdk1.8;

  2、下载:http://www.elastic.co/downloads/elasticsearch

  全文搜索引擎ElasticSearch学习记录:mac下安装

  3、下载完成后在端终解压,解压命令:tar -vxf elasticsearch-6.2.4.tar

  二、启动elasticSearch

    进入文件夹:cd elasticsearch-6.2.4 

    启动命令:sh ./bin/elasticsearch

  如下:出现starting与started表示启动成功,出现127.0.0.1:9200表示默认监听端口9200

  全文搜索引擎ElasticSearch学习记录:mac下安装

  在浏览器输入:127.0.0.1:9200,出现以下内容表示启动成功。

  全文搜索引擎ElasticSearch学习记录:mac下安装

 三、界面插件head安装

  1、从github里下载,地址:https://github.com/mobz/elasticsearch-head

  2、终端ctrl+C,关闭elasticSearch

  3、查询node

  如下图所示,我的node版本太低,nodejs是要6.0以上的,所以要升级一下

  全文搜索引擎ElasticSearch学习记录:mac下安装

  升级node第一步要安装n模块,这是专门用来管理nodejs版本的

    sudo npm install -g n

  把node升级到稳定版本

    sudo n stable

   这次node升级被坑了,出现Segmentation fault: 11错误,后来解决了,直接用n命令重新设置要使用的版本

    sudo n 9.3.0

  不幸的是,又没装成功,不过没关系,多试几个版本总有成功的,嘻嘻~~

  最后我装了9.11.0

  全文搜索引擎ElasticSearch学习记录:mac下安装

  4、启动插件(npm是node的包的安装工具)输入命令: npm run start

    进入elasticsearch-head-master,然后执行命令npm run start。

    不幸,还是没成功,安下面提示应该是指没有grunt

  全文搜索引擎ElasticSearch学习记录:mac下安装

  下面装grunt,通过npm安装:  全局安装安装 grunt-cli (并非grunt,允许安装多版本的grunt) 

  npm install -g grunt-cli

  全文搜索引擎ElasticSearch学习记录:mac下安装

  不过这时执行grunt命令还是提示command not found

  全文搜索引擎ElasticSearch学习记录:mac下安装

  这种情况一般是环境变量未配,参考文章:https://www.cnblogs.com/jaina/p/6067464.html

  全文搜索引擎ElasticSearch学习记录:mac下安装

  下面再执行一下npm run start,结果还是有问题, error: Unable to find local grunt.

(解决问题:https://blog.csdn.net/phoenix2121/article/details/25910919)

  全文搜索引擎ElasticSearch学习记录:mac下安装

  在elasticsearch-head-master下执行命令:npm install grunt

  完了之后再次npm run start,还是有错:

  全文搜索引擎ElasticSearch学习记录:mac下安装

  按大神说的,乖乖地一个个安装这些模块。

  最后执行npm run start,终于启动服务了:

  全文搜索引擎ElasticSearch学习记录:mac下安装

  赶紧在浏览器中输入:http://localhost:9100

  全文搜索引擎ElasticSearch学习记录:mac下安装

  终于装完了。。。。。