「elk」是三個開源專案的首字母縮寫,這三個專案分別是:elasticsearch、logstash 和 kibana。elasticsearch 是乙個搜尋和分析引擎。logstash 是伺服器端資料處理管道,能夠同時從多個**採集資料,轉換資料,然後將資料傳送到諸如 elasticsearch 等「儲存庫」中。kibana 則可以讓使用者在 elasticsearch 中使用圖形和圖表對資料進行視覺化。elk stack 中加入了一系列輕量型的單一功能資料採集器,並把它們叫做 beats。所以改名為elastic stack 是 elk stack 的更新換代產品。
選擇了7.3.0版本安裝
安裝
注意:預設不使用root使用者安裝
建立使用者 useradd elsearch
建立資料夾 elsearch ,將安裝包解壓到安裝目錄,修改檔案使用者 chown elsearch:elsearch elsearch -r
修改配置檔案 :
elasticsearch.yml 修改 network.host: 0.0.0.0
jvm.options : 修改jvm引數,因為如果 network.host 被修改了,就會被認為是生產環境,預設啟動jvm堆記憶體比較大,改小一點
-xms512m
-xmx512m
修改系統引數:
vim /etc/sysctl.conf 新增 vm.max_map_count = 655360
[root@prebuild0422-no elasticstack]# sysctl -p 生效
啟動 ./elasticsearch
error: [1] bootstrap checks failed
[1]: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured
解決辦法 : elasticsearch.yml 中找到配置項修改
node.name: node-1
cluster.initial_master_nodes: ["node-1"]
檢查
停止服務:
[root@prebuild0422-no ~]# jps
23491 elasticsearch
19461 jar
[root@prebuild0422-no ~]# kill 23491
安裝node
解壓 :
xz -d node-v14.16.0-linux-x64.tar.xz
tar -xvf node-v14.16.0-linux-x64.tar -c ../es-head/
修改資料夾名稱 : mv node-v14.16.0-linux-x64/ node-v14.16.0
配置path :
# set node js env
export node_home=/data/oracle/conggao2/elasticstack/es-head/node-v14.16.0
export path=$path:$node_home/bin
export node_path=$node_home/lib/node_modules
配置生效 : source /etc/profile
解壓 :unzip elasticsearch-head-master.zip
安裝:cd elasticsearch-head-master/
npm install -g grunt-cli
npm install -g grunt
修改檔案gruntfile.js,新增hostname為 0.0.0.0
connect: }}
啟動 :grunt server
[root@prebuild0422-no elasticsearch-head-master]# grunt server
>> local npm module "grunt-contrib-clean" not found. is it installed?
>> local npm module "grunt-contrib-concat" not found. is it installed?
>> local npm module "grunt-contrib-watch" not found. is it installed?
>> local npm module "grunt-contrib-connect" not found. is it installed?
>> local npm module "grunt-contrib-copy" not found. is it installed?
>> local npm module "grunt-contrib-jasmine" not found. is it installed?
warning: task "connect:server" not found. use --force to continue.
aborted due to warnings.
缺少的元件挨個安裝
npm install grunt-contrib-clean
npm install grunt-contrib-concat
npm install grunt-contrib-watch
npm install grunt-contrib-connect
npm install grunt-contrib-copy
npm install grunt-contrib-jasmine
安裝jasmine 依賴元件報錯重新安裝 npm install [email protected] --ignore-scripts
啟動成功:
介面開啟9100埠
# 增加如下字段
C Primer Chapter One學習筆記
筆記 1.流 從io裝置上讀入或寫出的字串行,用來說明字元隨時間順序生成或消耗。2.輸入輸出符可連用原因 operator 或operator 返回stream物件。3.要測試程式那個語句出錯,使用cout 4.新建乙個內建型別,如int i 0 最好先初始化,不然用到的時候沒初始化會產生奇怪的錯誤...
BroadcastReceiver學習筆記
需要注意 的是,不要在 onreceive 方法中新增過多的邏輯或者進行任何的耗時操作,因為在廣播接收 器中是不允許開啟執行緒的,當 onreceive 方法執行了較長時間而沒有結束時,程式就會報錯。有序broadcast,sendorderedbroadcast intent,null abort...
CDISC SDTM SE domain 學習筆記
整理翻譯自 sdtm ig 3.2 www.cdisc.org sdtm se subject elements 鞏固每個subject的epochs和elements的起止時間點.se對於有多個 時期的試驗有著重要的用處 如crossover試驗 se包含乙個subject從乙個element進入...