如何在我的服务器中每1小时运行一次此代码

时间:2019-07-12 06:35:51

标签: ubuntu nginx ubuntu-16.04

我希望每1小时运行一次“ service php7.0-fpm restart && service nginx restart”。

数字海洋飞沫-> nginx,ubuntu

1 个答案:

答案 0 :(得分:1)

您可以为其创建一个cron作业: 在终端上通过crontab -e打开它

添加这样的一行: 1 2 3 4 5 /command arg1 arg2 其中:

  1. 分钟(0-59)
  2. 小时(0-23)
  3. 一天(0-31)
  4. 月份(0-12 [12 == 12月])
  5. 星期几(0-7 [7和0是星期日]) / command –这是您的命令

因此您可以添加:

0 * * * *  service php7.0-fpm restart && service nginx restart

或者代替前五个字段,您可以使用八个特殊字符串之一,它看起来更干净:

@hourly service php7.0-fpm restart && service nginx restart