官网教程入口:https://www.elastic.co/guide/en/elasticsearch/client/curator/current/index.html

一、下载安装

  • 下载:sudo pip install elasticsearch-curator
  • 更新:sudo pip install -U elasticsearch-curator

版本:curator4.1.0

 

二、配置文件

1、config.yml

 1 # Remember, leave a key empty if there is no value.  None will be a string,
 2 # not a Python "NoneType"
 3 client:
 4   hosts: ["127.0.0.1:9200"]
 5   url_prefix: 
 6   use_ssl: False
 7   certificate: 
 8   client_cert: 
 9   client_key: 
10   aws_key: 
11   aws_secret_key: 
12   aws_region: 
13   ssl_no_validate: False
14   http_auth: 
15   timeout: 30
16   master_only: False
17 
18 logging:
19   loglevel: INFO
20   logfile: 
21   logformat: default
22   blacklist: ['elasticsearch', 'urllib3']
View Code

相关文章:

  • 2021-05-18
  • 2021-04-05
  • 2021-06-01
  • 2021-06-24
猜你喜欢
  • 2022-02-12
  • 2021-12-14
  • 2021-12-18
  • 2022-01-02
  • 2021-11-05
  • 2022-03-02
  • 2021-08-29
相关资源
相似解决方案