Centos – Why can the cron job not find a specific command

backupcentoscronduplicityftp

I am using duplicity to create nightly backups of my server over FTP. I wrote a script that does both a local and remote backup and logs the output results. When I run this script as the root user, it executes just fine. However when I set it as a cron job and run it, the script executes but the ftp portion fails. Shortly after I get an error message saying "ncftpls – command not found, please install ncftp 3.1.9 or later" but it is installed! Is there some reason that cron job would not be able to find a command that exists on the machine? Does it have it's own PATH or something like that?

Any help is greatly appreciated,

Mike

Best Answer

Are you using absolute paths? Cron jobs won't open an interactive shell, so bash init scripts (bashrc, bash_profile, etc.) that usually set the PATH may not be run--and if they are, they'll be using root's, not yours. If you're unsure about where the command is, you can use which <command> to find out the absolute path.

When dealing with cron scripts, the general rule of thumb is, you either (a) want to set the PATH or (b) use absolute paths.

Good luck!

Related Topic