centos7 设置定时任务

设置以 root 执行

  • 进入 crontab -e
  • 输入
分 时 日 月 星期
 * * * * * /usr/local/php/bin/php /data/wwwroot/xxxx/artisan schedule:run >> /dev/null 2>&1

设置指定用户执行

  • 进入 vim /etc/
  • 输入
# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name  command to be executed
* * * * *  *  www  /usr/local/php/bin/php /data/wwwroot/xxxx/artisan schedule:run >> /dev/null 2>&1 

猜你喜欢

转载自blog.csdn.net/z_ruitao/article/details/82718193