企业需求:
配置cron不允许tami用户使用。
实施步骤:
1.创建tami用户,并编辑/etc/cron.deny文件,把用户tami列入其中。
[root@dtop30 ~]# useradd tami
[root@dtop30 ~]# vim /etc/cron.deny
tami
2.保证crond服务开机启动。重启crond服务。
[root@dtop30 ~]# chkconfig crond on
[root@dtop30 ~]# service crond restart
3.验证:
[root@dtop30 ~]# crontab –e root用户正常可用
[root@dtop30 ~]# su – tami 切换到tami
[tami@dtop30 ~]$ crontab –e
[tami@dtop30 ~]$ exit
[root@dtop30 ~]#