Script not successfull in cron


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script not successfull in cron
# 1  
Old 09-04-2008
Script not successfull in cron

Hi,
I have a script to FTP the files to other unit.
Manually this script is running fine & files are getting transferred.

But running the same script using crontab does not transfer files, although the cron log shows that the file was executed.
PLz suggest
# 2  
Old 09-04-2008
Quote:
Originally Posted by sandeep_kmehra
Hi,
I have a script to FTP the files to other unit.
Manually this script is running fine & files are getting transferred.

But running the same script using crontab does not transfer files, although the cron log shows that the file was executed.
PLz suggest
few points to take care:

1. Have you tried putting some dummy scripts in the crons to see it is running?

2. when a script is running thru crons will have only very limitted environment set to it. May be the .profile needs to be manually called in the cron or in the script to suffice this need
# 3  
Old 09-04-2008
Quote:
Originally Posted by dennis.jacob
few points to take care:

1. Have you tried putting some dummy scripts in the crons to see it is running?

2. when a script is running thru crons will have only very limitted environment set to it. May be the .profile needs to be manually called in the cron or in the script to suffice this need
Try running the env command and output the result to a text file. Then schedule the same to happen during a cron job. You will almost certainly find a lot missing from the one run during cron. You may need to source your .profile or .bashrc or something else in the script run via cron.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trigger email from script if the Special Character replacement is successfull

Hello Gurus, I have a script developed... #!/bin/bash #--------------------------------------------------------------------- # This pScript will remove/replace the special characters fromfiles #--------------------------------------------------------------------- trxdate="`date... (1 Reply)
Discussion started by: nanduedi
1 Replies

2. UNIX for Dummies Questions & Answers

Execution problem with Cron: Script works manually but not w/Cron. Why?

Hello gurus, I am making what I think is a simple db2 call from within a shell script but I am having difficulty producing the desired report when I run the script shown below from a shell script in cron. For example, my script and the crontab file setup is shown below: #!/bin/ksh db2... (3 Replies)
Discussion started by: okonita
3 Replies

3. Shell Programming and Scripting

calling another script if it's contains SUCCESSFULL how?

Hi all, i'm a newbie here, I'm just wondering how can i call my second script if it's contain successfull. script1.sh how can i call my 2nd script if he contain SUCCESSFULL script2.sh SUCCESSFULL please advise, Thanks, (10 Replies)
Discussion started by: nikki1200
10 Replies

4. Shell Programming and Scripting

trying to run this script from unix but the script is not successfull

Hi I am trying to run the below unix script in informatica comamnd task the script is in placed in the path (this script checks if the files are present in other server ) ------------------------------------------------------------------... (1 Reply)
Discussion started by: laxmi131
1 Replies

5. UNIX for Advanced & Expert Users

SFTP was successfull but got return code as 1

Hi, I am using SFTP for transferring files to remote server. Below is the snipped i am using for my sftp program echo "lcd $i_localdir">/tmp/sftp_Batch echo "cd $i_destdir">>/tmp/sftp_Batch echo "put $i_filename">>/tmp/sftp_Batch echo "chmod 644... (2 Replies)
Discussion started by: Ankgne
2 Replies

6. Shell Programming and Scripting

Exit for loop in a shell script if a condition is successfull

Hi All, I am stuch in a script where a for loop is running to execute some commands for some values. Now my problem is i have to have an if condition that if the first iteration is successful then it has to exit the for loop otherwise it has to continue normally. my code is this: for... (5 Replies)
Discussion started by: usha rao
5 Replies

7. Shell Programming and Scripting

to find whether update query is successfull or not using Ksh Script

i have a script that performes an update operation. I just wanted to know whether that update statement is successfull or not. Below the script: #!/bin/ksh . $HOME/conf/systemProperties/EnvSetup.properties sqlplus -silent sie/da@edn.world <<END set pagesize 0 feedback off verify off... (3 Replies)
Discussion started by: ali560045
3 Replies

8. UNIX for Advanced & Expert Users

login partiallly successfull

Hi, I tried logging into a UNIX system with appropriate logins.. It takes lot of time to show prompt.. when i press control C it gives me the prompt.. I observed that the .cshrc file not getting executed successfully.. when i try myself sourcing .cshrc file it doesnot do it... Please let me... (1 Reply)
Discussion started by: shafi2all
1 Replies

9. HP-UX

How to check sqlplus command is successfull or not in HP UX?

Hi All, I am not able to check the output of sqlplus command if it fails. can any body please help me in this regard. (5 Replies)
Discussion started by: plaban.rout
5 Replies

10. Shell Programming and Scripting

Detecting a successfull FTP connection

I have a question. My company has to send a file to another company. The cron script currently just sends the file. However, every now and then the other companies ftp server is down. I wanted to alter my script to detect if the server is up before I attempt to send the file. My idea follows #... (2 Replies)
Discussion started by: beilstwh
2 Replies
Login or Register to Ask a Question