前言

操作系统:Kylin Linux Advanced Server release V10 (Tercel)

Kibana-7.15.2

一、下载地址

https://artifacts.elastic.co/downloads/kibana/kibana-7.15.2-linux-aarch64.tar.gz

二、安装

下载压缩包并解压之后,需要关注两个文件夹,一个是config文件夹,里面的kibana.yml是配置文件;一个是bin文件夹,里面有kibana启动的bat脚本

上传kibana-7.15.2-linux-aarch64.tar.gz文件到 /opt目录下,并解压

tar -zxvf kibana-7.15.2-linux-aarch64.tar.gz

在目录/usr/local下创建目录:kibana-7.15.2

mkdir kibana-7.15.2

复制解压后的文件到/usr/local/kibana-7.15.2目录下

cp -R /opt/kibana-7.15.2-linux-aarch64/* /usr/local/kibana-7.15.2/

设置 kibana-7.15.2 目录权限给elasticsearch用户

chown -R elasticsearch:elasticsearch kibana-7.15.2/

三、设置配置文件

修改/usr/local/kibana-7.6.0/config/kibana.yml

设置ElasticSearch的访问地址:

elasticsearch.hosts: [http://192.168.1.111:9200]

设置Kibana的访问地址,如果不设置则只能本机访问。

server.host: "192.168.1.111"  或者 server.host: "0.0.0.0"

# Kibana is served by a back end server. This setting specifies the port to use.
#server.port: 5601# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The default is 'localhost', which usually means remote machines will not be able to connect.
# To allow connections from remote users, set this parameter to a non-loopback address.
server.host: "0.0.0.0"# Enables you to specify a path to mount Kibana at if you are running behind a proxy.
# Use the `server.rewriteBasePath` setting to tell Kibana if it should remove the basePath
# from requests it receives, and to prevent a deprecation warning at startup.
# This setting cannot end in a slash.
#server.basePath: ""# Specifies whether Kibana should rewrite requests that are prefixed with
# `server.basePath` or require that they are rewritten by your reverse proxy.
# This setting was effectively always `false` before Kibana 6.3 and will
# default to `true` starting in Kibana 7.0.
#server.rewriteBasePath: false# Specifies the public URL at which Kibana is available for end users. If
# `server.basePath` is configured this URL should end with the same basePath.
#server.publicBaseUrl: ""# The maximum payload size in bytes for incoming server requests.
#server.maxPayload: 1048576# The Kibana server's name.  This is used for display purposes.
#server.name: "your-hostname"# The URLs of the Elasticsearch instances to use for all your queries.
elasticsearch.hosts: ["http://localhost:9200"]# Kibana uses an index in Elasticsearch to store saved searches, visualizations and
# dashboards. Kibana creates a new index if the index doesn't already exist.
#kibana.index: ".kibana"# The default application to load.
#kibana.defaultAppId: "home"# If your Elasticsearch is protected with basic authentication, these settings provide
# the username and password that the Kibana server uses to perform maintenance on the Kibana
# index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
# is proxied through the Kibana server.
#elasticsearch.username: "kibana_system"
#elasticsearch.password: "pass"# Kibana can also authenticate to Elasticsearch via "service account tokens".
# If may use this token instead of a username/password.
# elasticsearch.serviceAccountToken: "my_token"# Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
# These settings enable SSL for outgoing requests from the Kibana server to the browser.
#server.ssl.enabled: false
#server.ssl.certificate: /path/to/your/server.crt
#server.ssl.key: /path/to/your/server.key# Optional settings that provide the paths to the PEM-format SSL certificate and key files.
# These files are used to verify the identity of Kibana to Elasticsearch and are required when
# xpack.security.http.ssl.client_authentication in Elasticsearch is set to required.
#elasticsearch.ssl.certificate: /path/to/your/client.crt
#elasticsearch.ssl.key: /path/to/your/client.key# Optional setting that enables you to specify a path to the PEM file for the certificate
# authority for your Elasticsearch instance.
#elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ]# To disregard the validity of SSL certificates, change this setting's value to 'none'.
#elasticsearch.ssl.verificationMode: full# Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
# the elasticsearch.requestTimeout setting.
#elasticsearch.pingTimeout: 1500# Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
# must be a positive integer.
#elasticsearch.requestTimeout: 30000# List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
# headers, set this value to [] (an empty list).
#elasticsearch.requestHeadersWhitelist: [ authorization ]# Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
# by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
#elasticsearch.customHeaders: {}# Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
#elasticsearch.shardTimeout: 30000# Logs queries sent to Elasticsearch. Requires logging.verbose set to true.
#elasticsearch.logQueries: false# Specifies the path where Kibana creates the process ID file.
#pid.file: /run/kibana/kibana.pid# Enables you to specify a file where Kibana stores log output.
#logging.dest: stdout# Set the value of this setting to true to suppress all logging output.
#logging.silent: false# Set the value of this setting to true to suppress all logging output other than error messages.
#logging.quiet: false# Set the value of this setting to true to log all events, including system usage information
# and all requests.
#logging.verbose: false# Set the interval in milliseconds to sample system and process performance
# metrics. Minimum is 100ms. Defaults to 5000.
#ops.interval: 5000# Specifies locale to be used for all localizable strings, dates and number formats.
# Supported languages are the following: English - en , by default , Chinese - zh-CN .
#i18n.locale: "en"

四、启动

如果用root用户启动会报错:

Kibana should not be run as root.  Use --allow-root to continue.

切换elasticsearch用户,并进入目录:/usr/local/kibana-7.15.2/bin 启动服务

./kibana

五、测试访问

http://192.168.1.111:5601/app/home#/

六、开机启动

建立服务文件

vi /lib/systemd/system/kibana.service

[Unit]
Description=Kibana
[Service]
LimitNOFILE=100000
LimitNPROC=100000
ExecStart=/usr/local/kibana-7.15.2/bin/kibana
User=elasticsearch
Group=elasticsearch
[Install]
WantedBy=multi-user.target

设置开机自启动

重新加载systemd的守护线程:
systemctl daemon-reloadsystemctl enable kibana

其它

启动elasticsearch.service:
systemctl start kibana.service查看kibana.serivce状态:
systemctl status kibana.service 
ps aux|grep kibana
如果出现错误可以使用如下命令查看日志:
journalctl -u kibana.service

银河麒麟V10(Kylin Linux V10)安装 Kibana-7.15.2相关推荐

  1. 【Linux operation 23】Win 10 64位(X86 架构CPU)安装ARM架构的虚拟机(银河麒麟高级服务器操作系统 V10)

    1.银河麒麟高级服务器操作系统 V10(鲲鹏版)下载: 官网下载 https://www.kylinos.cn/scheme/server/1.html 1.银河麒麟高级服务器操作系统V10x86/兆 ...

  2. 银河麒麟高级服务器操作系统V10上安装k8s单机集群

    前言 本文介绍银河麒麟高级服务器操作系统V10上安装部署k8s单机集群及一些基础的kubectl指令 本文涉及部署脚本主要源自基于https://github.com/easzlab/kubeasz在 ...

  3. 银河麒麟高级服务器操作系统V10——LVM创建与使用

    银河麒麟高级服务器操作系统V10--LVM创建与使用 fdisk -l 查看当前分区表信息 fdisk 新增一块 2 TB 分区并个性 ID 为 8e fdisk和lsblk 查看最新分区信息 将物理 ...

  4. 优麒麟在linux下安装教程,在优麒麟Ubuntu Kylin系统中安装百度网盘Linux版.deb的方法...

    本文介绍在优麒麟Ubuntu Kylin操作系统中安装百度网盘Linux版.deb的方法,可用在优麒麟及 Ubuntu 19.04/18.04上,当前百度网盘Linux版的版本号是Linux V2.0 ...

  5. 如何安装腾讯视频linux版,在优麒麟Ubuntu Kylin系统上安装腾讯视频Linux版DEB软件包...

    本文教你在优麒麟Ubuntu Kylin系统上安装腾讯视频Linux版Tenvideo_universal_1.0.10_amd64.deb软件包的方法. 一.下载腾讯视频Linux版客户端 由于优麒 ...

  6. 银河麒麟V10(Kylin Linux V10)之DBeaver安装

    导出前期提要: 本次演示的操作系统版本是Kylin Linux Advanced Server release V10 (Tercel),需安装图形化界面 DBeaver下载地址:Download | ...

  7. VMware 安装 银河麒麟高级服务器操作系统 V10 + QT 开发环境搭建

    下载并安装vmware 下载银河麒麟操作烯烃服务器版v10的镜像文件 从官网下载,因为是x86的电脑芯片,选择AMD64版,即 vmare 安装麒麟操作系统 注意事项: 安装位置选择自动分区 网络和主 ...

  8. 银河麒麟高级服务器操作系统V10 SP2安装人大金仓V8R6数据库

    目录 1.安装环境配置 1.1配置本地yum源 1.2同步本地时间 1.3配置本地环境 2.安装依赖关系 3.安装数据库 1.安装环境配置 1.1配置本地yum源 [root@kylintest2 ~ ...

  9. linux麒麟安装教程,优麒麟Ubuntu Kylin 18.04安装教程

    优麒麟Ubunt Kylin 18.04是优麒麟开源操作系统的第三个长线支持版本,为方便用户下载安装和使用,特发布本简易安装教程,主要对系统安装盘制作和安装过程进行介绍.在安装前可以对该系统进行一个全 ...

  10. 银河麒麟(Kylin)系统Ghost镜像文件(.kyimg)系统还原方法

    准备工作 1. 银河麒麟版本:Kylin-4.0.2-desktop-sp4-20200728.J1-arm64.iso 2. 启动盘制作软件:Rufus 3.9 3. 1台win7系统电脑 4. 2 ...

最新文章

  1. Activity的插件化(三)
  2. java语言for模板_java版的模板语言
  3. php 显示数据库操作错误,php操作mysql数据库编码错误
  4. ThreadPoolExcutor 线程池 异常处理 (上篇)
  5. iref streams_如何利用Neo4j Streams并建立即时数据仓库
  6. linux中搭建java开发环境
  7. 王云燕-永远好奇,一生求知
  8. 关于JS获取标签中的的方法及上传下载
  9. flex知識:container of spark
  10. 炼石:栉风沐雨七载路,不负韶华再出发
  11. 计算机蓝屏重启,电脑蓝屏怎么解决?电脑蓝屏自动重启解决方法
  12. 打印机打印的时候会打印计算机用户,打印机打印的时候出现administrator是什么意思...
  13. rdkit 化学反应ReactionFromSmarts
  14. NOIP五校联考1-4总结
  15. 传奇地图文件MapInfo参数大全
  16. JavaScript - 语言进阶
  17. 数字波束成形——信道矩阵奇异值分解
  18. 被取代的ERP?EBC正在用业务数字化让管理出效益
  19. 3G移动网络,给WAP带来什么?
  20. tkinter 使用threading启动mainloop报错:RuntimeError: Calling Tcl from different apartment

热门文章

  1. 计算机学报在线阅读,计算机研究与发展计算机学报软件学报电子学报西安交通大学学报.doc...
  2. 全球及中国有机橘子油行业投资前景预测与重点企业经营分析报告2021-2027年版
  3. 暗黑模式?安卓适配一波
  4. 单位脉冲(冲激)响应与频率响应
  5. 最强大脑记忆曲线(2)——创建数据库
  6. Go 依赖注入库dig
  7. redis---sds(简单动态字符串)详解
  8. cpu虚拟化(cpu虚拟化开启有什么影响)
  9. 哈工大计算机研究生到抖音,抖音一家12口全是硕博引围观,本人谈心得:学霸养成就靠这三点...
  10. Vue中变量前加...三个点什么意思