zoukankan      html  css  js  c++  java
  • elk7.8

    1:elasticserach安装
    rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch

    Create a file called elasticsearch.repo in the /etc/yum.repos.d/ directory for RedHat based distributions, or in the /etc/zypp/repos.d/ directory for OpenSuSE based distributions, containing:

    [elasticsearch]
    name=Elasticsearch repository for 7.x packages
    baseurl=https://artifacts.elastic.co/packages/7.x/yum
    gpgcheck=1
    gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
    enabled=0
    autorefresh=1
    type=rpm-md

    And your repository is ready for use. You can now install Elasticsearch with one of the following commands:

    sudo yum install --enablerepo=elasticsearch elasticsearch 

    2:kibana安装
    rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch

    Create a file called elasticsearch.repo in the /etc/yum.repos.d/ directory for RedHat based distributions, or in the /etc/zypp/repos.d/ directory for OpenSuSE based distributions, containing:

    [elasticsearch]
    name=Elasticsearch repository for 7.x packages
    baseurl=https://artifacts.elastic.co/packages/7.x/yum
    gpgcheck=1
    gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
    enabled=0
    autorefresh=1
    type=rpm-md

    And your repository is ready for use. You can now install Elasticsearch with one of the following commands:

    sudo yum install --enablerepo=elasticsearch elasticsearch 

    3:jdk
    vi /etc/profile 
    #文末添加以下配置
    export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL
    export JAVA_HOME=/usr/share/elasticsearch/jdk
    export PATH=$JAVA_HOME/bin:$PATH
    export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
    #使变量生效
    source /etc/profile
     
    如果更改版本,yum remove elasticsearch
    rm -rf  /var/lib/elasticsearch  /usr/share/elastucsearch
    里面有node_lock 要删除改文件夹
    kibana 同理
    题外修改环境变量
     cat ~/.bashrc 

    export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL
    export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk
    export PATH=$JAVA_HOME/bin:$PATH
    export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar

     source ~/.bashrc
    4:

    [root@localhost software]# cat /etc/kibana/kibana.yml |grep -v "^#"
    server.port: 5601
    server.host: "0.0.0.0"
    server.name: "node-1"
    elasticsearch.hosts: ["http://127.0.0.1:9200"]
    kibana.index: ".kibana"

    5:

    [root@localhost software]# cat /etc/elasticsearch/elasticsearch.yml |grep -v "^#"
    node.name: node-1
    path.data: /var/lib/elasticsearch
    path.logs: /var/log/elasticsearch
    network.host: "0.0.0.0"
    http.port: 9200
    cluster.initial_master_nodes: ["node-1"]

  • 相关阅读:
    webpack打包加大就是为了加大文件允许体积,提升报错门栏
    webpack打包配置服务
    webpack 打包 js图片
    webpack 打包css 图片
    webpack打包多个html打包,分别引入不同的 多个 js 文件 流程
    webpack打包所有css打包压缩到一个js里面
    webapck 打包多个 js ,多个 html 同时打包流程
    webpack打包多个js 合并成默认 main.js文件步骤
    wbpack打包准备工作
    模拟攒机小程序 兼容提示 电源功率推荐 小白攒机神器
  • 原文地址:https://www.cnblogs.com/joycezhou/p/13441708.html
Copyright © 2011-2022 走看看