即使删除后,Amazon EC2 centos 上的 Cron 仍然会执行

即使删除后,Amazon EC2 centos 上的 Cron 仍然会执行

cron在 1 号机器上有一份工作,需要打开/关闭 2 号机器几个小时。

现在我删除了cron机器 1 中的所有作业,因此它不会打开/关闭机器 2。

我没有crons,

要删除cron机器 1 中的所有 s,我使用了:

sudo crontab -r

但由于某种原因机器2继续打开/关闭

我什至曾经检查cron机器 1 上的登录情况:

sudo cat /var/log/cron

我在日志中没有看到停止/启动命令。因此,cron作业似乎不会打开/关闭机器 2。

Cron 工作是 root。

当执行以下命令时:

sudo crontab -l 和 crontab -l

他们给我:“root 没有 crontab”和“centos 没有 crontab”。

执行命令:

sudo ls -l /var/spool/cron/

回报总计 0

/etc/crontab 包含:

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root

# For details see man 4 crontabs

# 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

正在做ls 克朗*etc文件夹内显示:

cron.deny  crontab

cron.d:
0hourly
cron.daily:
logrotate  man-db.cron
cron.hourly:
0anacron
cron.monthly:
cron.weekly:

以前它是一个 Root cron 作业。我不知道从这里该去哪里。

答案1

好吧,还有另一个服务(第三方),我向我的 ec2 实例提供了打开/关闭我的实例的访问密钥,但我忘记了它。好吧,我把它删除了,所以我认为它不会再活跃了。

不管怎样,案子解决了。

谢谢你们。

相关内容