crontab权限控制

执行crontab -l报如下错
You (username) are not allowed to use this program (crontab)
See crontab(1) for more information

linux下有两个文件控制着crontab的权限
#该文件中所列用户不允许使用crontab命令
/etc/cron.deny
#该文件中所列用户允许使用crontab命令
/etc/cron.allow
Linux不控制root的权限;系统默认情况下没有/etc/cron.allow这个文件,只有一个/etc/cron.deny,因此列在cron.deny文件中的用户名不可以使用crontab,如果cron.allow配置文件存在,则只有列在这个文件中的用户名可以使用crontab,这时cron.deny被忽略。
因此将允许使用crontab的用户加到/etc/cron.allow文件中即可。

上一篇:跨域请求各属性说明;


下一篇:nginx 跨域