首页 > 其他分享 >7、Kibana图形显示安装配置

7、Kibana图形显示安装配置

时间:2023-06-28 21:33:01浏览次数:39  
标签:ubuntu2004 安装 kibana Kibana 0.0 图形 root

Kibana图形显示
安装并配置 Kibana
可以通过包或者二进制的方式进行安装,可以安装在独立服务器,或者也可以和elasticsearch的主机安装在一起 注意: Kibana的版本要和 Elasticsearch 相同的版本,否则可能会出错

下载站点:https://mirrors.tuna.tsinghua.edu.cn/elasticstack/7.x
下载:
[root@ubuntu2004 ~]#wget https://mirrors.tuna.tsinghua.edu.cn/elasticstack/7.x/apt/pool/main/k/kibana/kibana-7.17.5-amd64.deb

安装:
[root@ubuntu2004 ~]#dpkg kibana-7.17.5-amd64.deb
修改配置
[root@ubuntu2004 ~]#vim /etc/kibana/kibana.yml
[root@ubuntu2004 ~]#grep "^[a-Z]" /etc/kibana/kibana.yml
server.port: 5601      #监听端口,此为默认值

server.host: "0.0.0.0" #修改此行的监听地址,默认为localhost,即:127.0.0.1:5601

#修改此行,指向ES任意服务器地址或多个节点地址实现容错,默认为localhost
elasticsearch.hosts: ["http://10.0.0.101:9200","http://10.0.0.102:9200","http://10.0.0.103:9200"] 

i18n.locale: "zh-CN"   #修改此行,使用"zh-CN"显示中文界面,默认英文
启动 Kibana 服务并验证
#默认没有开机自动启动,需要自行设置
[root@ubuntu2004 ~]#systemctl enable --now kibana

[root@ubuntu2004 ~]#ss -ntlp |grep node 
LISTEN   0         128                 0.0.0.0:5601             0.0.0.0:*       users:(("node",pid=2013,fd=18))

标签:ubuntu2004,安装,kibana,Kibana,0.0,图形,root
From: https://blog.51cto.com/mfc001/6576588

相关文章

  • ubuntu 安装nfs
    #server端aptinstallnfs-kernel-servermkdir-p/data/volumesecho"/data/volumes192.169.31.0/24(rw,no_root_squash)">>/etc/exportsservicenfs-kernel-serverrestartroot@ubuntu-host:~#showmount-eExportlistforubuntu-host:/data/......
  • 2、Elasticsearch单节点安装脚本
    #!/bin/bashES_VERSION=7.17.5UBUNTU_URL="https://mirrors.tuna.tsinghua.edu.cn/elasticstack/7.x/apt/pool/main/e/elasticsearch/elasticsearch-${ES_VERSION}-amd64.deb"RHEL_URL="https://mirrors.tuna.tsinghua.edu.cn/elasticstack/7.x/yum/${ES......
  • 3、Elasticsearch集群安装脚本
    #!/bin/bashES_VERSION=7.17.5UBUNTU_URL="https://mirrors.tuna.tsinghua.edu.cn/elasticstack/7.x/apt/pool/main/e/elasticsearch/elasticsearch-${ES_VERSION}-amd64.deb"RHEL_URL="https://mirrors.tuna.tsinghua.edu.cn/elasticstack/7.x/yum/${ES_......
  • 4、Elasticsearch插件Head和Serebro实现Elasticsearch的图形化管理
    Elasticsearch访问Elasticsearch支持各种语言使用RESTfulAPI通过端口9200与之进行通信,可以用你习惯的web客户端访问Elasticsearch可以用三种方式和Elasticsearch进行交互curl命令和其它浏览器:基于命令行,操作不方便插件:在node节点上安装head,Cerebro等插件,实现图形操......
  • linux安装redis
    官网下载redisIndexof/releases/(redis.io)选择一个版本用xftp传到linux中,并且解压解压命令tar-xvffilename.tar.gz 进入解压后的redis目录中,执行安装命令makeinstall 进入utils目录中 执行install_server.sh,并且一直回车,就是全部配置都是默认的 安装......
  • Mathtype6.9安装与输入中文乱码问题
    Mathtype6.9下载地址(含替换文件):链接:https://pan.baidu.com/s/1cIXqrhIpjb0EcEKgwVnOJw提取码:28d3也可以自己下载替换文件:http://xiazai.mathtype.cn/mathtype.exe.rep1.安装mathtype2.打开安装文件3.将替换文件复制过来4.删除原mathtype.exe文件5.删除替换文件后缀.rep ......
  • bc-liunx欧拉编译安装nginx
    1、下载nginx包上次至目标服务器2、解压包3、安装依赖包yuminstall-ypcrepcre-develpcrepcre-developensslopenssl-develzlibzlib-develgdgd-devel4、编译安装nginx,这里记住nginx不要放在和编译路径一个文件夹,不然会报错,一下是编译命令与建议参数./configure--prefix......
  • linux安装jdk、nginx记录
    jdk1、解压tarxzvf压缩包名位置(/usr/local/jdk)2、配置环境变量vi/etc/profile键盘i开启编辑,在最后键入:JAVA_HOME=/usr/local/jdkJRE_HOME=/usr/local/jdk/jreCLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar:$JRE_HOME/libPATH=$PATH:$JAVA_HOME/bin:$JR......
  • 虚拟机中安装Linux系统
    虚拟机中安装Linux系统新建虚拟机选择典型安装选择稍后安装操作系统选择Linux操作系统中的CentOS7选择虚拟机文件路径默认硬盘或者自行调整硬盘大小配置完成稍后调整硬件选择编辑虚拟机文件内存建议2G,处理器2-4个,网络选择NAT,最后点击光驱(根据个人的机器来调整)......
  • ESLint 安装使用及报错处理
    安装ESlint并初始化配置//第一种//全局安装ESLintnpmieslint-g//生成配置文件//根据自己的项目需求进行设置(yes/no)eslint--init√HowwouldyouliketouseESLint·problems√Whattypeofmodulesdoesyourprojectuse·esm√Whichframework......