ubuntu增加定时任务

  1. 编写定时任务脚本,如:test.sh
    #!/bin/bash
    echo "hello"

     

  2. 设置定时任务
    crontab -e  #对定时任务进行编辑
    */1 * * * * bash /usr/local/sh/test.sh >> /usr/local/sh/log/reloadnginx.log #每分钟重启一次

     

  3. 重新启动定时任务服务
    /etc/init.d/cron restart

     

posted @ 2019-11-27 10:46  leoBlog  阅读(834)  评论(0编辑  收藏  举报