私は単一のユーザーと次のcrontabを持つUbuntuサーバーを持っています。
# 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
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and crontab(8)
#
# m h dom mon dow command
MAILTO=<my email>
* * * * * echo "Test"
このcronの仕事と同じくらい簡単ですが、私は電子メールを受け取っていません。私はまたそれを次のように修正してみました(私のEメールに問題がある場合)。
* * * * * echo "Test" >> test.txt
しかしファイル test.txt
作成されることはありません。
これは 本当に 単純な問題ですが、通常はcronジョブで問題が発生したときに実際に実行されていて、ジョブがエラーをスローしているだけです。ジョブが実行されていないときに診断を開始する方法がわかりません。
の出力で更新 service cron status
sbarnett@sbarnett:~$ service cron status
Failed to get properties: Access denied
sbarnett@sbarnett:~$ sudo service cron status
[sudo] password for sbarnett:
● cron.service - Regular background program processing daemon
Loaded: loaded (/lib/systemd/system/cron.service; enabled; vendor preset: enabled)
Active: active (running) since Tue 2017-08-15 14:15:52 MST; 3 weeks 1 days ago
Docs: man:cron(8)
Main PID: 1682 (cron)
CGroup: /system.slice/cron.service
└─1682 /usr/sbin/cron -f
Sep 07 09:55:01 sbarnett.vm CRON[3144]: pam_unix(cron:session): session opened for user root by (uid=0)
Sep 07 09:55:01 sbarnett.vm CRON[3145]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Sep 07 10:05:01 sbarnett.vm CRON[3151]: pam_unix(cron:session): session opened for user root by (uid=0)
Sep 07 10:05:01 sbarnett.vm CRON[3152]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Sep 07 10:05:01 sbarnett.vm CRON[3151]: pam_unix(cron:session): session closed for user root
Sep 07 10:15:01 sbarnett.vm CRON[3156]: pam_unix(cron:session): session opened for user root by (uid=0)
Sep 07 10:15:01 sbarnett.vm CRON[3157]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Sep 07 10:17:01 sbarnett.vm CRON[3159]: pam_unix(cron:session): session opened for user root by (uid=0)
Sep 07 10:17:01 sbarnett.vm CRON[3160]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Sep 07 10:17:01 sbarnett.vm CRON[3159]: pam_unix(cron:session): session closed for user root
それを確認してください
—
AFH
cron
サービスは実行中です。 service cron status
;そうでなければ、 sudo service cron start
。
@Aganju - すべてのフィールドをに設定
—
AFH
*
それは完全に有効です:それは毎分タスクを実行します。
ローカルのEメールエージェントを実行していますか?
—
JakeGould
@ JakeGouldのコメントを補足するために、次の点を確認してください。
—
AFH
mail
テストEメールを送信するためにそれを使用することによって正しくセットアップされています:を見てください man mail
詳細については。
cron
(だからこれは完全ながらくたかもしれません)が、ワイルドカードには意味がありますか すべて 5つの分野?毎日、この設定でジョブが実行されるのはいつでしょうか。私は少なくとも分野に何かを入れようとします。