ES5.0集群搭建

来源:https://www.cnblogs.com/JeremyWYL/archive/2017/12/29/8144711.html
-Advertisement-
Play Games

最近在網上看到很多ES集群的搭建方法,本人在這人使用Elasticsearch5.0.1版本,介紹如何搭建es集群並安裝head插件和其他插件安裝方法。 一、搭建環境(2台Centos7系統伺服器) 所需軟體 基礎環境JAVA 測試環境關閉防火牆和selinux 配置主機名和hosts文件 創建用戶 ...


最近在網上看到很多ES集群的搭建方法,本人在這人使用Elasticsearch5.0.1版本,介紹如何搭建es集群並安裝head插件和其他插件安裝方法。

一、搭建環境(2台Centos7系統伺服器)

所需軟體

  Elasticsearch-5.0.1.tar.gz
  node-v4.2.2-linux-x64.tar.gz

基礎環境JAVA

  yum -y install java-1.8*
  java -version #檢查java是否安裝成功

測試環境關閉防火牆和selinux

    關閉防火牆
        systemctl stop firewalld
        systemctl diable firewalld
    關閉selinux
        sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config   #需要重啟系統

配置主機名和hosts文件

  配置hostname
        sed -i 's/localhost/es1/g' /etc/hostname
     
sed -i 's/localhost/es1/g' /etc/hostname
  配置hosts vi /etc/hosts #添加一下內容 
     172.16.81.133 es1
     172.16.81.134 es2

創建用戶

        useradd elasticsearch
        passwd elasticsearch   #然後輸入兩次密碼即可!

二、安裝es軟體(tar.gz解壓安裝)

         tar -zxvf elasticsearch-5.0.1.tar.gz
         mv elasticsearch-5.0.1 elasticsearch5
         cd elasticsearch5

創建data和logs目錄

         mkdir -p es
         mkdir -p es/data
         mkdir -p es/logs

修改配置文件

            cd /opt/elasticsearch5/config
            vi elasticsearch.yml
            es1配置文件如下:
                cluster.name: es-cluster    #集群名,不同名稱代表不同集群
                node.name: es1    #節點名稱,自定義
                path.data: /opt/elasticsearch5/es/data    #數據路徑
                path.logs: /opt/elasticsearch5/es/logs    #日誌路徑
                bootstrap.memory_lock: false    #關閉鎖記憶體
                network.host: 172.16.81.133    #綁定IP地址
                http.port: 9200    #綁定埠
                discovery.zen.ping.unicast.hosts: ["es1", "es2"]    #集群列表,類型數組,可以是IP或功能變數名稱
                discovery.zen.minimum_master_nodes: 2    #節點數不能超過節點總數量
                http.cors.enabled: true    #開啟http網路節點發現
                http.cors.allow-origin: "*"    #允許所有同網段節點發現
            es2配置文件如下:
                cluster.name: es-cluster    #集群名,不同名稱代表不同集群
                node.name: es2    #節點名稱,自定義
                path.data: /opt/elasticsearch5/es/data    #數據路徑
                path.logs: /opt/elasticsearch5/es/logs    #日誌路徑
                bootstrap.memory_lock: false    #關閉鎖記憶體
                network.host: 172.16.81.134    #綁定IP地址
                http.port: 9200    #綁定埠
                discovery.zen.ping.unicast.hosts: ["es1", "es2"]    #集群列表,類型數組,可以是IP或功能變數名稱
                discovery.zen.minimum_master_nodes: 2    #節點數不能超過節點總數量
                http.cors.enabled: true    #開啟http網路節點發現
                http.cors.allow-origin: "*"    #允許所有同網段節點發現

配置內核參數

            vi /etc/security/limits.conf    #添加以下內容
                * soft nofile 65536
                * hard nofile 131072
                * soft nproc 2048
                * hard nproc 4096
            vi /etc/sysctl.conf 
                添加下麵配置:
                vm.max_map_count=655360
                並執行命令:
                sysctl -p

修改文件許可權

            chown -R elasticsearch:elasticsearch elasticsearch5

切換到elasticsearch啟動程式

            su - elasticsearch
            cd /opt/elasticsearch5/bin
            ./elasticsearch  #觀察輸出信息
            ./elasticsearch &    #後臺運行

查看埠

            netstat -lntp
            結果:
            tcp        0      0 0.0.0.0:9100            0.0.0.0:*               LISTEN      8892/grunt                  
            tcp6       0      0 172.16.81.133:9200      :::*                    LISTEN      5250/java           
            tcp6       0      0 172.16.81.133:9300      :::*                    LISTEN      5250/java           
            存在9100、9200、9300上述上個埠即可!

三、安裝elasticsearch-head插件

安裝依賴包和工具包

yum -y install wget git bizp2

git項目到本地

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

安裝node、npm、grunt

wget https://nodejs.org/dist/v4.2.2/node-v4.2.2-linux-x64.tar.gz
tar -zxvf node-v4.2.2-linux-x64.tar.gz

設置鏈接

ln -s /opt/node-v4.2.2-linux-x64/bin/node /usr/sbin/node
ln -s /opt/node-v4.2.2-linux-x64/bin/npm /usr/sbin/npm

設置npm代理鏡像

npm config set registry https://registry.npm.taobao.org

安裝、配置grunt

npm install -g grunt
ln -s /opt/node-v4.2.2-linux-x64/lib/node_modules/grunt/bin/grunt /usr/sbin/grunt

修改elasticsearch-head配置文件

                cd /opt/elasticsearch-head
                vi _site/app.js
                // 把localhost改為ip
                this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://localhost:9200";
                this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://172.16.81.89:9200";
                修改Gruntfile.js
                connect: {
                    server: {
                        options: {                                                                                                                  
                            hostname: "0.0.0.0", #添加這裡
                            port: 9100,
                            base: '.',
                            keepalive: true
                        }   
                    }   
                }

安裝head

 cd /opt/elasticsearch-head
 npm install

啟動head

grunt server &

瀏覽器訪問(最好是谷歌瀏覽器)

介面:
http://172.16.81.133:9200/
集群:
http://172.16.81.133:9100/   #五角星代表主節點,圓點代表數據節點 查看主master是誰: http://172.16.81.133:9200/_cat/master 更多URL信息 http://172.16.81.133:9200/_cat

最後在介紹下5.x安裝插件的方法,這兒我們舉例安裝!

我們將安裝geoip的插件(可以解析外網地址顯示在地圖上)

cd /opt/elasticsearch5/bin

[root@es1 bin]# ./elasticsearch-plugin install --help   #我們看到了所支持的插件
Install a plugin

The following official plugins may be installed by name:
analysis-icu
analysis-kuromoji
analysis-phonetic
analysis-smartcn
analysis-stempel
discovery-azure-classic
discovery-ec2
discovery-file
discovery-gce
ingest-attachment
ingest-geoip
ingest-user-agent
lang-javascript
lang-python
mapper-attachments
mapper-murmur3
mapper-size
repository-azure
repository-gcs
repository-hdfs
repository-s3
store-smb
x-pack

Non-option arguments:

安裝插件:

[root@es1 bin]# ./elasticsearch-plugin install ingest-geoip
-> Downloading ingest-geoip from elastic
[=================================================] 100%  
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: plugin requires additional permissions @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
* java.lang.RuntimePermission accessDeclaredMembers
See http://docs.oracle.com/javase/8/docs/technotes/guides/security/permissions.html
for descriptions of what these permissions allow and the associated risks.

Continue with installation? [y/N]y
-> Installed ingest-geoip

驗證:

cd /opt/elasticsearch5/plugins
[root@es1 plugins]# ls
ingest-geoip  #會看到剛剛安裝的插件,需要重啟es集群配置生效

es集群到此就完成了!後續將發佈zookeeper和kafka集群!

感謝!有問題請指出!轉載請指出源鏈接!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 原想在 MVC Action 上加一個自定義 Attribute 來做一些控制操作,最先的做法是在自定 Attribute 中定義一個屬性來做邏輯判斷,可惜事與願違,這個屬性值居然會被緩存起來,於是於此做個筆記以免後續重蹈覆轍。過濾器部分過濾器中定義了一個名稱為 count 的屬性值來初始化,並重寫... ...
  • 序列化(SerializeObject)與反序列化(DeserializeObject)。 打開Nuget安裝Newtonsoft.Json: class Bl { public void SerialAndDeser() { List<string> a = new List<string>() ...
  • public static class BubbleSortTool { public static void BubbleSort(this T[] array, AscendingorDescending ascendingorDescending) where T:IComparable { ... ...
  • 本文主要是介紹Aop的一些概念,並結合實際編程,介紹了靜態織入和動態織入的幾種實現方式,並做了相應比較,從而讓讀者可以更好的選擇適合自己實際情況的技術方案。 ...
  • NPOI導出Excel及使用問題 因為最近公司質管部門提出了一個統計報表的需求:要求導出一個2016及2017年度深圳區域的所有供應商的費用成本計算——一個22列的Excel表,其中還包括多列的合併單元格;說實話,統計報表功能其實我還是很少涉及的,以前都是直接用DataTable+輸出流導出Exce ...
  • 回到目錄 單元測試大叔認為有幾下兩個必要的作用,也是為什麼要上單元測試的原因 目前添加了組件正確性的測試,在組件進行升級和優化之後,需要走一篇測試流程,以它的正確! 有條件的同學,可以在自己的源代碼管理上添加pipeline,在你的新項目修改遷入後,讓它自動進行測試,這樣也可以保證項目的質量! 這應 ...
  • 內插字元串($) 實際上是C# 6.0對string.Format的改進,將字元串文本標識為內插字元串($)根據微軟的例子來看: 相當於原先的string.Format這種必須使用占位符,極容易出錯: 而使用$則不容易出現錯誤,可以這樣寫: 新增語法糖:(?.) 這也是C#6.0的語法,這叫Null ...
  • <!--Ad Injection:top--> <!--Ad Injection:random--> Xmind Pro 8是一款用於思維導圖和頭腦風暴軟體的精彩軟體。這個軟體是非常有用的應用程式,提供簡單的方法來繪製您的想法在圖形和組織任務。Xmind Pro 8許可證密鑰是非常簡單的軟體,它能夠 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...