Running Elastic without the Trial License

前端 未结 2 1615
一整个雨季
一整个雨季 2021-02-13 12:43

Background: I\'m trying to use the Elastic stack (Elastic, Logstash & Kibana), but I have no money to pay. I don\'t mind using the parts that are c

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-13 13:25

    Since version 6.5 there is not a standalone x-Pack plugin anymore, all the x-pack features are integrated in the Elastic Stack.

    If you want to run the Elastic Stack using only the free features, which means that you will use the free basic license, you need to set your license in the elasticsearch.yml file using the line below (more info):

    xpack.license.self_generated.type: basic
    

    This will disable the trial and enable only the free features.

    If you want to run the stack using only the features licensed under Apache 2.0 license (the open source version), you need to download the oss packages for elasticsearch, kibana and logstash.

    You can download it here: elasticsearch-oss,kibana-oss and logstash-oss

    You can see the differences between the OSS version and the Free Basic license in the subscriptions page.

提交回复
热议问题