我已经安装了ELK和最新的策展人4.0。我想使其在Linux中与cronjob一起定期运行。

  • 我已经在Linux主目录上安装了.curator,即cd~
  • 我输入了crontab -e
  • 我输入以下语句* * * * * /.curator curator action.yml

  • 这个设置正确吗?我应该如何检查它是否正在运行?

    最佳答案

    1-对于策展人安装结帐:https://www.elastic.co/guide/en/elasticsearch/client/curator/current/installation.html

    2-您可以编辑crontab条目。没关系。

    3-如果正确安装了curator,则可以运行:

    * * * * * curator /path/to/action/file/action.yml
    

    它将使用指定的action.yml文件每分钟运行一次策展人。

    对于crontab日志结帐:https://askubuntu.com/questions/56683/where-is-the-cron-crontab-log

    08-07 21:43