Wednesday 12 September 2012

Solution for cron/oracle: Permission denied

Error :


[oracle@plcdbprod ~]$ crontab -l

cron/oracle: Permission denied



Solution :


Log in as a root , and find the permission as given by,

[root@plcdbprod ~]# ls -l /usr/bin/crontab

-rwxr-xr-x 1 root root 315432 Jul 15  2008 /usr/bin/crontab




[root@plcdbprod ~]# chmod 4755 /usr/bin/crontab

[root@plcdbprod ~]# ls -l /usr/bin/crontab

-rwsr-xr-x 1 root root 315432 Jul 15  2008 /usr/bin/crontab



Finally check your crontab -e login by oracle .

No comments:

Post a Comment