นาทีที่แย่ใน crontab?


9

ฉันได้รับข้อผิดพลาดต่อไปนี้ใน syslog ของฉัน:

Oct 17 13:14:03 tracker cron[873]: (*system*) ERROR (Syntax error, this crontab file will be ignored)
Oct 17 13:14:03 tracker cron[873]: Error: bad minute; while reading /etc/crontab

ฉันไม่เห็นว่าจะมีช่วงเวลาที่เลวร้ายใด ๆ ! crontabไฟล์ของฉันคือ:

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 18   * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 18   * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 18   1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#

2
ระบบปฏิบัติการและเวอร์ชั่นใด? ระบบ Unix ที่เก่ากว่าอาจไม่รองรับไวยากรณ์สำหรับการตั้งค่าตัวแปรสภาพแวดล้อม
RedGrittyBrick

คำตอบ:



1

ฉันมีข้อผิดพลาดเดียวกันใน Ubuntu 16.04 มีปัญหากับการกำหนดที่ว่างเปล่าให้กับ MAILTO

MAILTO=

ปัญหาที่ฉันพบด้วยความช่วยเหลือของchkcrontab


0

แท็บ Cron ต้องการอย่างน้อยบรรทัดแรกและบรรทัดสุดท้ายของไฟล์ไม่ใช่คำสั่ง cron จริง คุณสามารถใส่ความคิดเห็นแทน - เช่นที่อยู่ด้านล่างในไฟล์:

# START CRON JOB LIST
* * * * * /path/to/script/script1.sh
0 3 * * 0 /path/to/script/script2.sh
5 0 * * 1 /path/to/script/script3.sh
# END CRON JOB LIST

ติดตั้งอย่างนั้น

sudo crontab -u user /path/to/cron/file

สิ่งนี้น่าจะเหมาะกับคุณ


0

สำหรับทุกคนที่มีปัญหาใน Mac คุณสามารถตรวจสอบ crontab ของคุณสำหรับตัวอักษรที่ไม่ได้พิมพ์โดยการพิมพ์

crontab -l | cat -e

หรือ

sudo crontab -l | cat -e

ถ้าคุณมี root crontab


คำถามไม่ได้พูดถึง Mac
RalfFriedl

อันที่จริงมันไม่ได้ แต่คำถามไม่ได้ระบุลินุกซ์ด้วยเช่นกัน ฉันไม่เห็นว่าทำไมคุณไม่ต้องการครอบคลุมวิธีการทำเช่นนี้ในระบบปฏิบัติการให้มากที่สุด
Josh Correia

-3

ไฟล์ / etc / crontab มีการสิ้นสุดบรรทัด DOS แทนที่ด้วยการสิ้นสุดบรรทัด unix


2
ทำไมคุณคิดอย่างนั้น
โตโต้
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.