크론을 정상적으로 시작할 수 없습니다

크론을 정상적으로 시작할 수 없습니다

Bash 스크립트를 실행해야 하는 cron 작업이 있습니다. 내 로컬 컴퓨터에서 cron 작업이 제대로 작동하므로 bash 스크립트가 작동한다는 것을 확인했습니다.

그러나 cron 작업은 내가 액세스할 수 있는 원격 시스템에서 실행되지 않는 것 같습니다. 테스트로 터치 명령을 실행해 보겠습니다. 내 크론 작업은 다음과 같습니다.

# 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 cron(8)
# 
# m h  dom mon dow   command
21 12 * * * /usr/bin/touch /home/aidan/test.txt

이 크론 작업은 "/usr/bin/touch"에 test.txt 파일을 생성해야 합니다. 그러나 전혀 발사되지 않는 것 같습니다.

디버깅을 위해 다음 2개의 명령을 사용하여 "/var/log/syslog"를 살펴보았습니다.

  1. sudo cat /var/log/syslog | sudo cat /var/log/syslog | grep -w 'cron' 이 명령에서는 다음과 같은 출력을 얻습니다.
Dec 13 20:21:01 onecup cron[1628]: (aidan) RELOAD (crontabs/aidan)
  1. sudo grep CRON /var/log/syslog.txt 이 명령에서는 다음과 같은 출력을 얻습니다.
Dec 13 17:17:01 onecup CRON[1060280]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Dec 13 18:17:01 onecup CRON[1120928]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Dec 13 19:17:01 onecup CRON[1180117]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Dec 13 20:17:01 onecup CRON[1238901]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)

이 명령에는 cron 작업이 전혀 표시되지 않습니다.
내 기대는 CMD가 나타나야 한다는 것이다.

간단히 말해서 cronjob이 다시 로드되는 것처럼 보이지만안 돼요실제로 촬영합니다. 누구든지 어떤 아이디어가 있습니까?

또한 제가 여기서 본 내용은 다음과 같습니다.https://stackoverflow.com/questions/60842683/cron-not-running-tasks-ubuntu-18-04.

문제가 해결되지 않았습니다.

답변1

문제를 발견했습니다. 머신은 UTC 영역에서 실행 중이고 저는 PST 영역에서 실행 중이었습니다. 따라서 cron 작업이 예상되는 현지 시간에 실행되지 않습니다.

관련 정보