当前位置:网站首页>Kibana - installation and configuration of kibana
Kibana - installation and configuration of kibana
2022-07-03 11:37:00 【Fly link】
One 、 matters needing attention :
1. Kibana Is and ElasticSearch Used in combination with , During installation, try to ensure Kibana and ElasticSearch Consistent versions of
2. ElasticSearch and java The installation tutorial of is here => Elastic and JDK Installation tutorial for
Two 、Kibana Installation
1. Upload the compressed package to /export/server/ Under the table of contents 
2. Decompress the package
tar -zxvf kibana-7.6.0-linux-x86_64.tar.gz
3. Delete compressed package
rm -rf kibana-7.6.0-linux-x86_64.tar.gz
4. Rename folder
mv kibana-7.6.0-linux-x86_64/ kibana
3、 ... and 、Kibana Configuration of
vim /export/server/kibana/config/kibana.yml
#####----- Kibana relevant -----#####
# The port that provides the service , The default is 5601
server.port: 5601
# The host address , It can be ip、 Host name
server.host: "192.168.10.101"
# Run behind the agent , You can specify the installation kibana The path of
# Use server.rewriteBasePath Settings tell kibana Whether to delete basePath Received requests , And prevent outdated warnings at startup
# This setting cannot end with a slash
# server.basePath: ""
# Appoint kibana Whether it should be rewritten to server.bashPath Request with prefix , Or ask them to be overridden by a reverse proxy , The default is false
# server.rewriteBasePath: false
# Maximum payload size of incoming server request , In bytes , Default 1048576
#server.maxPayloadBytes: 1048576
# The kibana Name of service , Default your-hostname
server.name: kibana-server
#####----- ElasticSearch relevant -----#####
# kibana visit es Server's URL, There can be multiple , By comma "," separate
elasticsearch.hosts: ["http://192.168.10.101:9200"]
# When this value is true when ,kibana Use server.host Set the host name
# When this value is false yes ,kibana Use connections kibana The hostname of the instance
# The default is true
#elasticsearch.preserveHost: true
# kibana Use ElasticSearch To store saved searches , Visualization and dashboard
# If it does not exist on the index ,kibana A new index will be created
# Default .kibana
#kibana.index: ".kibana"
# Default application loaded
#kibana.defaultAppId: "home"
# kibana visit elasticsearch Your account number and password ( If elasticsearch If it's set up )
#elasticsearch.username: "kibana"
#elasticsearch.password: "pass"
# from kibana Whether server to browser outgoing requests are enabled SSL
# Set to true when , need server.ssl.certificate and server.ssl.key
#server.ssl.enabled: false
#server.ssl.certificate: /path/to/your/server.crt
#server.ssl.key: /path/to/your/server.key
# from kibana To elasticsearch Enable ssl after ,ssl.certificate and ssl.key The location of
#elasticsearch.ssl.certificate: /path/to/your/client.crt
#elasticsearch.ssl.key: /path/to/your/client.key
# PEM Path list of files
#elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ]
# control ElasticSearch Certificate validation provided
# Valid values are none,certificate and ,full
#elasticsearch.ssl.verificationMode: full
# ElasticSearch Server response ping Time for , Company ms
#elasticsearch.pingTimeout: 1500
# ElasticSearch Response time of , Company ms
#elasticsearch.requestTimeout: 30000
# Kibana Client sent to ElasticSearch List of headers
# If the client header is not sent , Please set this value to null
#elasticsearch.requestHeadersWhitelist: [ authorization ]
# Kibana The client sends to ElasticSearch Title name and value of
#elasticsearch.customHeaders: {}
# ElasticSearch Time to wait for fragment response
#elasticsearch.shardTimeout: 30000
# Kibana Wait at startup ElasticSearch Time for , Company ms, And then try again
#elasticsearch.startupTimeout: 5000
# The record is sent to ElasticSearch Query for
#elasticsearch.logQueries: false
# Service pid File path , Default /var/run/kibana.pid
#pid.file: /var/run/kibana.pid
#####----- Log correlation -----#####
# Kibana Log file storage path , Default stdout
#logging.dest: stdout
# This value is true when , Disable all logging output
# The default is false
#logging.silent: false
# This value is true when , Disable all logging output except error messages
# The default is false
#logging.quiet: false
# This value is true when , Record all events , Including system usage information and all requests
# Default false
#logging.verbose: false
#####----- other -----#####
# System and process sampling interval , Company ms, minimum value 100ms
# Default 5000ms
#ops.interval: 5000
# Kibana web Language
# Default en
#i18n.locale: "en"
Four 、Kibana Start of
1. Switch non root user
su es
2. Modify user rights
chown -R es:es /export/server/kibana/
3. start-up ElasticSearch service
/export/server/elasticsearch/bin/elasticsearch -d
4. start-up Kibana service
# The front desk starts
/export/server/kibana/bin/kibana
# Background start
# nohup /export/server/kibana/bin/kibana &
5. Successful launch

边栏推荐
- Google Earth engine (GEE) - ghsl global population grid dataset 250 meter resolution
- 鸿蒙第三次培训(项目实训)
- [VTK] vtkPolydataToImageStencil 源码解读
- C语言 AES加解密
- 2022 northeast four provinces match VP record / supplementary questions
- Cadence background color setting
- The manuscript will be revised for release tonight. But, still stuck here, maybe what you need is a paragraph.
- 程序员的创业陷阱:接私活
- Project management essence reading notes (VII)
- C language two-dimensional array
猜你喜欢

FL Studio 20无限试用版水果编曲下载

高精度室内定位技术,在智慧工厂安全管理的应用

Processes and threads

Numpy np. Max and np Maximum implements the relu function

用了这么久线程池,你真的知道如何合理配置线程数吗?
![[OBS] configFile in ini format of OBS](/img/b2/0b130cee6ea884557a30e4b408f49e.png)
[OBS] configFile in ini format of OBS

银泰百货点燃城市“夜经济”

After using the thread pool for so long, do you really know how to reasonably configure the number of threads?

聊聊Flink框架中的状态管理机制

Numpy np.max和np.maximum实现relu函数
随机推荐
Résumé des questions d'entrevue (2) Modèle io, ensemble, principe NiO, pénétration du cache, avalanche de rupture
Matlab extracts numerical data from irregular txt files (simple and practical)
Some common terms
C language log base zlog basic use
Double linked list of linear list
Function details of CorelDRAW graphics suite 2022
Qt+VTK+OCCT读取IGES/STEP模型
R language uses grid of gridextra package The array function combines multiple visual images of the lattice package horizontally, and the ncol parameter defines the number of columns of the combined g
Modular programming of single chip microcomputer
机器学习 3.2 决策树模型 学习笔记(待补)
Kibana~Kibana的安装和配置
FL Studio 20无限试用版水果编曲下载
Oracle withdraw permission & create role
After a month, I finally got Kingdee offer! Share tetrahedral Sutra + review materials
PHP基础
00后抛弃互联网: 毕业不想进大厂,要去搞最潮Web3
How to become a senior digital IC Design Engineer (1-5) Verilog coding syntax: operand
STL教程10-容器共性和使用场景
How to mix embedded MCU, arm and DSP?
R language uses data The table package performs data aggregation statistics, calculates window statistics, calculates the median of sliding groups, and merges the generated statistical data into the o