nohup ./kibana &
關閉防火牆命令
systemctl stop firewalld.service
last login: sun jul 19 10:25:38 2020 from 192.168.0.100
[root@localhost ~]# cd /home/elksofts/kibana-6.8.0-linux-x86_64/bin
[root@localhost bin]# ps -ef|grep node
root 1831 1765 0 10:27 pts/2 00:00:00 grep --color=auto node
[root@localhost bin]# netstat -tunlp|grep 5601
[root@localhost bin]# nohup ./kibana >dev/null &
----------------------------------------
nohup ./kibana >dev/null &
這個命令好像不行,待研究
----------------------------------------
[1] 1837
[root@localhost bin]# -bash: dev/null: 沒有那個檔案或目錄
[1]+ 退出 1 nohup ./kibana > dev/null
[root@localhost bin]#
[root@localhost bin]# netstat -tunlp|grep 5601
[root@localhost bin]# ps -ef|grep node
root 1841 1765 0 10:30 pts/2 00:00:00 grep --color=auto node
[root@localhost bin]# nohup ./kibana &
----------------------------------------
nohup ./kibana &
最終使用這個命令,後台成功啟動
----------------------------------------
[1] 1842
[root@localhost bin]# nohup: 忽略輸入並把輸出追加到"nohup.out"
# kibana中查詢資料
```bash
get pms_user_index_zz/_search
get pms_user_index_zz/_search
}}```
#plugins-outputs-elasticsearch-upsert
```get talent_index_0629/_search
}}```# 修改-如下修改
***注意:如果只修改了乙個字段,那麼原有的其他欄位都會消失。只保留當前的這次修改。相當於覆蓋***
```post talent_index_0629/_doc/4289
--執行結果
, "_seq_no" : 43720,
"_primary_term" : 1
}get talent_index_0629/doc/4289
}```
# 修改某個字段值
```post talent_index_0629/doc/4290/_update
}--執行結果
, "_seq_no" : 43725,
"_primary_term" : 1
}get talent_index_0629/_search
}}get talent_index_0629/_search
}}```# 修改單個字段異常
```post talent_index_0630/doc/344/_update}}
```## 修改某個字段
```post talent_index_0630/doc/195735/_update},
"_seq_no" : 39300,
"_primary_term" : 1
}```
記錄踩過的坑 Kibana
目錄 1.kibana預設埠 5601 2.啟動kibana 3.同一curl命令在cygwin和kibala中執行curl命令的寫法 4.建立自己的文字抽取管道pipeline 5.根據之前建立的管道往elasticsearch裡寫資料 6.查詢之前寫入的資料 雙擊kibana的bin目錄下的ki...
kibana 7 3 2安裝簡要記錄
在伺服器上傳目錄解壓kibana tar zxvf kibana 7.3.2 linux x86 64.tar.gz 修改config kibana.yml檔案配置 vim kibana.yml kibana.yml常見配置項 沒有特殊要求預設配置就可以不需要修改 pingelasticsearch...
perl 記錄程式後台執行時間
b size large align center perl 記錄程式後台執行時間 align size b 今天遇到乙個問題 如何記錄hdecode解碼時間,hdecode解碼時間很長,需要在後台執行,即如何記錄hdecode在後台執行時間?我測試的指令為 1.b 2 do hdecode 301...