• 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"]

  • 相关阅读:
    (续)在深度计算框架MindSpore中如何对不持续的计算进行处理——对数据集进行一定epoch数量的训练后,进行其他工作处理,再返回来接着进行一定epoch数量的训练——单步计算
    YAML文件简介
    训练集验证集测试集的概念
    泛化误差
    drawio的打开方法
    移动硬盘无法被电脑识别
    r5 3600相当于英特尔什么级别
    Ubuntu WPS字体缺失配置
    pytorch深度学习cpu占用太高
    常用的架构设计原则-云原生架构设计快速入门
  • 原文地址:https://www.cnblogs.com/joycezhou/p/13441708.html
Copyright © 2020-2023  润新知