Script runs manually, but not from cron


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script runs manually, but not from cron
# 8  
Old 05-27-2016
Yes... Same error;


Code:
trcfile  dev_rout
 *****************************************************************************
*
*  ERROR       SNC processing failed:
*              SncInit
*
*  TIME        Fri May 27 13:43:00 2016
*  RELEASE     745
*  COMPONENT   NI (network interface)
*  VERSION     40
*  RC          -17
*  MODULE      /bas/745_REL/src/base/ni/nisnc.c
*  LINE        553
*  DETAIL      NiSncInit: sncrc=-1
*  COUNTER     4
*
*****************************************************************************


Last edited by RudiC; 05-27-2016 at 12:19 PM.. Reason: ... code tags ...
# 9  
Old 05-27-2016
Hmm. Hard to figure out from here. It must be something in the environment that is different. Maybe some variable not set. Maybe the different shell (Try to set SHELL=/bin/bash as first line your crontab).

I would try to dive deeper into problem with strace.

Maybe another member has some helpful simple tip of typical obvious interactive/cronjob problems.
This User Gave Thanks to stomp For This Post:
# 10  
Old 05-27-2016
I tried specifying the shell (both as bash and my default ksh), but get the same error.

---------- Post updated at 09:23 AM ---------- Previous update was at 08:10 AM ----------

Issue now resolved.

Many thanks to "stomp" for the pointer, re variables.

I found that running
Code:
env

showed an entry for
Code:
SNC_LIB=/usr/sap/saprouter/libsapcrypto.so

I added the line
Code:
env > /tmp/envcron

to my script and found that this variable was not set when running from cron (even though both cron and manual run is with the root user).

I added
Code:
export SNC_LIB=/usr/sap/saprouter/libsapcrypto.so

to my script and it now works perfectly.

Again, many thanks for the responses. This has been by very first forum post and I will happily use again!
# 11  
Old 05-27-2016
Quote:
Originally Posted by bredman
Thanks for your prompt responses.

This is a service that only needs to run for 15 minutes each day. There is another cron job to stop this at 10:15.

This is the output from the log file;

Code:
# more /tmp/saprouter.log
*****************************************************************************
*
* ERROR SNC processing failed:
* SncInit
*
* TIME Fri May 27 13:00:00 2016
* RELEASE 745
* COMPONENT NI (network interface)
* VERSION 40
* RC -17
* MODULE /bas/745_REL/src/base/ni/nisnc.c
* LINE 553
* DETAIL NiSncInit: sncrc=-1
* COUNTER 4
*
*****************************************************************************

trcfile dev_rout


According to SAP, this seems to indicate a problem with authentication. However, if I run the script manually, there is no error...

I should say, I also revised the crontab entry to include "nohup";

Code:
00 13 * * 1-5 nohup /usr/sap/saprouter/scriptname > /tmp/saprouter.log 2>&1




Moderator's Comments:
Mod Comment Better, but not quite there. Use code tags for data or output as well!
The most common reason for scripts that work when run manually, but fail when run by cron is that the environment provided by cron does not contain any of the setting usually initialized by your shell's start-up scripts when you login to the system.

In this case, from the error message above, it seems likely that you have initialized PATH to include the directory in which the SAP SncInit is located in your shell's start-up script, but have not set PATH the same way in /usr/sap/saprouter/scriptname. But, since you haven't shown us the entire script, we're just guessing at what might be wrong.
# 12  
Old 05-28-2016
Env problem ?
Add line
Code:
env > /tmp/sapenv.tmp

to the script and run manually and via cron. Compare env.

Make your env file
Code:
cd  /usr/sap/saprouter
env > myenv

Edit myenv if needed.

Add line to script to set env
Code:
.  /usr/sap/saprouter/myenv

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. UNIX for Dummies Questions & Answers

Script runs manually but not from crontab in UNIX

Hi Guys, I am executing the script called Delet.sh manually it is successfully completing the task but it is failing to run vi cron tab, I tried to pass PATH & .profile before execution but no luck, Any suggestions? Script below #!/usr/bin/ksh #set -x # Purpose : Delete folders file from... (9 Replies)
Discussion started by: Anilsa77
9 Replies

3. Shell Programming and Scripting

Script runs good manually but failing via crontab

Hello Gurus, I have written small script which will start the given service if its stop .Its running fine when manually executed but its unable to run from crontab. #!/bin/bash SERVICENAME=rsyslog service $SERVICENAME status > /dev/null SYSLOGSTATUS=`echo $?` COUNT=0 THRESHOLD=3 if ... (4 Replies)
Discussion started by: kapil514
4 Replies

4. Shell Programming and Scripting

Part of the Shell script is not running via crontab, runs fine manually

Hello Team, As a part of my job we have made a script to automate a service to restart frequently. Script having two functions when executing it's should find the existing service and kill it, then start the same service . Verified the script it's working fine when executing... (18 Replies)
Discussion started by: gowthamakanthan
18 Replies

5. Shell Programming and Scripting

Script runs fine manually but not in crontab

Hello Guys, I have scratched my head alot on this but couldn't find clue what's wrong. Can you please help me with this? My problem is as following. 1) When I manually execute following script it runs successfully with below output. bash-3.00# more smssend #!/bin/bash echo -e "<Request... (16 Replies)
Discussion started by: umarsatti
16 Replies

6. Shell Programming and Scripting

Shell Script runs good manually but not through Cron tab

Hello Every one, I have a shell script which is running fine manually, but its giving me hard time when running tru cron job. :wall:. Am using #!/usr/bin/ksh >echo $SHELL /usr/bin/ksh Cron Job is as below, it execues but dosent do what i want it to do. 47 15 * * *... (1 Reply)
Discussion started by: naren.chowdhary
1 Replies

7. Shell Programming and Scripting

Script runs manually but not correctly from crontab

Hello all, I'm new here and have a question if you don't mind helping me. I have a script that will work if I kick if off manually but not from Cron. My cron entry is this: 05,20,35,50 * * * * /scripts/status.sh > /dev/null 2>&1 The first script (works fine) is this: #!/bin/sh # #... (14 Replies)
Discussion started by: hs3082
14 Replies

8. Shell Programming and Scripting

Script runs manually but not correctly from crontab

Hi all I have this inside a shell script (bash): cd DIRECTORY find . -maxdepth 1 | sed 's#./##' | /usr/bin/xargs -I '{}' chown -Rv '{}' /DIRECTORY/'{}' All the directories in this location are named after usernames, so it simply sets the owner to that of the username of the folder. It... (5 Replies)
Discussion started by: fakesy
5 Replies

9. Solaris

SFTP errorcode 1 when run on cron but runs manually

I am trying to run a sript on cron to SFTP data to a company. Private and public keys are set up. When I run this manully it works fine, however it was failing when run on cron. I have narrowed down the problem - it fails at the code that says if the error code is 0 then continue . . . I... (2 Replies)
Discussion started by: Heidi.Ebbs
2 Replies

10. Shell Programming and Scripting

Can run script Manually, but not through Cron?

Hi all, I have a main script (called OracleCleanup) that runs some sql queries. that runs off a wrapper script which contains the sources for the login information and and JOB_HOME (the script is below). When I schedule this job in the cron the log says that it cannot open my list file, which... (4 Replies)
Discussion started by: MadHatter
4 Replies
Login or Register to Ask a Question