I have a simple python script to test hashlib module in python
#testhashlib.py
import hashlib
print hashlib.sha1('hello')
The script runs fine when invoke manually, but fails (no print out in log file) when invoked by cron. I also added library on top of the crontab to make sure that cron can see all the python libraries.
LD_LIBRARY_PATH=/home/adam/python/lib
* * * * * /home/adam/python/bin/python /home/adam/crons/testhashlib.py >> /home/adam/log/testhashlib.log
Any idea what I'm missing here?
sys.stdout.flush())? That sounds more reasonable to me than the missing libraries (unless you have some indication that that is the reason, but I think you don't). – Harel Sep 22 '12 at 5:152>&1to redirect STDERR to the same file. – Martijn Pieters Sep 22 '12 at 6:32