![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Installing apps | blowFish@ubuntu | UNIX for Dummies Questions & Answers | 0 | 08-07-2007 05:08 PM |
| using Oracle with Cron | alikun | Shell Programming and Scripting | 4 | 04-24-2007 03:37 PM |
| Having A Problem Connecting to Oracle Using Cron | goodmis | UNIX for Dummies Questions & Answers | 1 | 03-20-2007 04:12 PM |
| Shell + Oracle + Cron job | pathanjalireddy | Shell Programming and Scripting | 1 | 04-07-2005 02:07 AM |
| Graphic apps | FredrikB | UNIX for Dummies Questions & Answers | 4 | 06-30-2001 04:21 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Hi,
I have created a shell script which will ftp a file from my Oracle DB server to a remote server - I've named this ftp_test.sh. I have set up a cron job to fire off the shell script and when I set the job I get a message returned that the job has been installed and everything seems o.k. However, when I check to see whether my file has been ftp'd it is n't there. Is there anyway I can check to see if the cron job has actually ran or not and if not - why? |
|
|||||
|
You should redirect the output of your cronjob to some log like:
Code:
* * * * * /home/jupp/somejob.ksh >> /home/jupp/somejob.log 2>&1 And have a look here, if you have problems with environmental settings etc.: cron and crontab |
| Sponsored Links | ||
|
|