执行crontal -e遇到报错:
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
评论