代码之家  ›  专栏  ›  技术社区  ›  Harrison Cramer

数字海洋服务器中的Crontab调度

  •  1
  • Harrison Cramer  · 技术社区  · 6 年前

    我的本地crontab文件中有以下计划:

    */10 * * * * /usr/local/bin/node /Users/harrisoncramer/CrontabScripts/dsca-arms-sales/xmlParser.js
    

    "/tmp/crontab.Wf1279/crontab":0: bad minute
    errors in crontab file, can't install.
    Do you want to retry the same edit?
    

    crontab文件如下所示:

    10/* * * * * nodejs /home/harrisoncramer/dsca_sales_tracker/xmlParser.js
    
    # Edit this file to introduce tasks to be run by cron.
    # Each task to run has to be defined through a single line
    # indicating with different fields when the task will be run
    # and what command to run for the task....etc.....
    

    Digital Ocean指定,当您想使用node运行应用程序时,应该在crontab中引用nodejs。

    我做错什么了?

    1 回复  |  直到 6 年前
        1
  •  1
  •   Oliver Gur Kamal Singh Badal    6 年前

    您的crontab语法错误已关闭。要运行命令,例如每10分钟使用
    */10 * * * * /path/to/the/command .

    您可以找到有关crontab配置的更多信息 here