问题

执行crontal -e遇到报错:

You (用户名) are not allowed to use this program (crontab)
See crontab(1) for more information

解决

Linux中以下2个文件控制crontab的访问权限:

  • /etc/cron.allow

  • /etc/cron.deny

需要将用户加到 /etc/cron.allow

执行命令:

su - root
echo 用户名 > /etc/cron.allow