美文网首页
2018-04-23 elastic6.2版本安装

2018-04-23 elastic6.2版本安装

作者: insists | 来源:发表于2018-04-23 21:30 被阅读0次

elasticsearch6.2.4

jdk 1.8

centos6.8

1.解压

/conf/elasticsearch.yml配置:

https://www.elastic.co/guide/cn/elasticsearch/guide/current/important-configuration-changes.html 官方文档

详细配置:

cluster.name: elasticsearch

node.name: ela50 (每台机子不同,方便找到)

在memory中:

bootstrap.system_call_filter: false

network.host: 192.168.56.50 (绑定每台机子的IP)

transport.tcp.port: 9300 (貌似可以不配,默认9300)

http.port:9200

http.enabled: true (开启http服务)

http.cors.enabled:true

http.cors.allow-origin: "*"

http.cors.allo-credentials: true

在discover里配置

discovery.zen.ping.unicast.hosts:["192.168.56.50:9300","192.168.56.51:9300","192.168.56.52:9300"]

(在这个版本中,默认单播,需要告诉可以发现的IP地址)

需要将系统的/etc/security/limits.conf中配置

* soft nofile 65536

* hard nofile 131072

/etc/security/limits.d/90-nproc.conf

* soft nproc  4096

重启后将参数读入

npm安装

rpm -ivh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6

rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-remi

curl --silent --location https://rpm.nodesource.com/setup_5.x | bash -

yum -y install nodejs

elasticsearhc-head 配置

head需要从git上下载

git clone git://github.com/mobz/elasticsearch-head.git

cd elasticsearch-head

npm install

npm run start

open http://localhost:9100/

相关文章

  • 2018-04-23 elastic6.2版本安装

    elasticsearch6.2.4 jdk 1.8 centos6.8 1.解压 /conf/elasticse...

  • 客户端基础测试文档

    1.安装/卸载 真机上安装、卸载; 高版本覆盖安装; 低版本覆盖安装; 卸载后安装高版本; 安装关注点: 版本号、...

  • nvm 常用命令

    安装当前最新的稳定版 安装指定版本 切换node版本 显示所有安装的版本 删除已安装的版本 显示当前的版本

  • 读书日感想

    2018-04-23 我对...

  • 移动端测试用例总结【转】

    一、安装/卸载 1、真机上安装、卸载、高版本覆盖安装、低版本覆盖安装、卸载后安装高版本; 安装关注点:版本号、渠道...

  • 使用n升级node版本

    安装及使用 安装 查看已安装版本 安装稳定的官方版本 安装最新的LTS官方版本 安装最新的node版本 使用某个版...

  • Mac 上用n切换node.js版本

    安装 全局安装npm。 常用命令 查看帮助 列出所有node版本 安装某个版本 安装最新版本 安装稳定版本 切换已...

  • CentOS 安装PostgreSQL

    安装版本信息: CentOS版本: PostgreSQL版本: 一、 PostgresSQL的安装 1、安装rpm...

  • 在 Centos 安装 Docker EE

    在 Centos 安装 Docker EE 删除旧版本 查看已安装的版本 删除已安装的版本 安装 下载 安装 更新...

  • vue cli4.0安装及创建项目

    安装 通过npm安装,默认安装最新版本 指定版本安装 通过yarn安装 安装完成查看版本 查看本机安装地址 创建项...

网友评论

      本文标题:2018-04-23 elastic6.2版本安装

      本文链接:https://www.haomeiwen.com/subject/uzlrlftx.html