Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Getting error when running script through crontab Post 302365799 by nypreH on Wednesday 28th of October 2009 05:16:05 AM
Old 10-28-2009
Hi, thanks for replies.

zaxxon, thanks for link it is very interesting.

But unfortunatelly, problem still exist... (((

My test script is:
Code:
bash-3.00$ more spots_dhc.sh 
#!/bin/bash 
SPF=/var/opt/spots-pms/traffic_data/ascii/*.spf
echo $SPF > /tmp/output.hc
/opt/spots-pms/bin/dbloader -d / -ei -fi -r /var/opt/spots-pms/traffic_data/ascii/*.spf >> /tmp/output.hc
bash-3.00$

If I am using only name, without full path, i am getting error:
Code:
bash-3.00$ mail
From spots@SPOTS Wed Oct 28 13:08:00 2009
Date: Wed, 28 Oct 2009 13:08:00 +0400 (AZT)
From: SPOTS Administrator <spots@SPOTS>
Message-Id: <200910280908.n9S980ii014185@SPOTS>
To: spots@SPOTS
Subject: Output from "cron" command
Content-Length: 132
Your "cron" job on SPOTS
/tmp/spots_dhc.sh
produced the following output:
/tmp/spots_dhc.sh: line 4: dbloader: command not found

? dp
bash-3.00$

But if I am using full path in script, then i am getting error:
Code:
bash-3.00$ mail
From spots@SPOTS Wed Oct 28 12:57:00 2009
Date: Wed, 28 Oct 2009 12:57:00 +0400 (AZT)
From: SPOTS Administrator <spots@SPOTS>
Message-Id: <200910280857.n9S8v0x8013564@SPOTS>
To: spots@SPOTS
Subject: Output from "cron" command
Content-Length: 315
Your "cron" job on SPOTS
/tmp/spots_dhc.sh
produced the following output:
ld.so.1: dbloader: fatal: libACE.so: open failed: No such file or directory
/tmp/spots_dhc.sh: line 4: 13560 Killed                  /opt/spots-pms/bin/dbloader -d / -ei -fi -r /var/opt/spots-pms/traffic_data/ascii/*.spf >>/tmp/output.hc

Which directory or file not exist? I was trying to define PATH - opt/spots-pms/bin/ in /etc/default/cron, but same result...
And again if i am running from command line its ok.

Last edited by pludi; 10-28-2009 at 06:39 AM.. Reason: code tags, please...
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

A command in a script not running in Crontab.

Hi, I made this script for TRU Unix 5.1 OS based Node. When the script was run manually all the commands were running properly. But when it was run from Crontab, one command is not running. This command is not running when the script is running from Crontab: #... (2 Replies)
Discussion started by: mystition
2 Replies

2. Shell Programming and Scripting

issue with running script with crontab

I am facing a strange issue while running a script(eg A) from the crontab entry the script calls one more script(eg B) within it now when i run the script A manually(with nohup) it also executes the script B (embedded inside it) as expected. but when i run the script A from the crontab entry... (7 Replies)
Discussion started by: mad_man12
7 Replies

3. Red Hat

Problems with script running with crontab

Hi, I'm trying the backup a few information commands of my Check Point FW (it's on a SPLAT linux machine). This is the script I wrote: #!/bin/bash cd /var/tmp/ file1=netstat_`/bin/date +%d%m%y`.txt file2=ifconfig_`/bin/date +%d%m%y`.txt file3=cpstatos_`/bin/date +%d%m%y`.txt... (2 Replies)
Discussion started by: nirsh
2 Replies

4. Shell Programming and Scripting

Crontab not running a script

Hi, I posted this in the Solaris forum but I think this one would be more appropriate. I created a script starting with the following lines: #!/usr/bin/ksh flag=n export flag typeset -i quant=0 (...) When running it I'm getting the following 2 errors: /tmp/tstscript/testfail.ksh:... (9 Replies)
Discussion started by: Cvg
9 Replies

5. UNIX for Advanced & Expert Users

Particular script not running through crontab

Hi, I have created the below script, set -x # Set the Path of Environment file ENV_FILE_DIR=/opt/app/p1trp1c1/sybase/ecdwqdm/xrbid/QDM_Prod/bin LOG_DIR=/opt/app/p1trp1c1/sybase/ecdwqdm/xrbid/QDM_Prod/log export ENV_FILE_DIR export LOG_DIR # Set Audit Environment . ${ENV_FILE_DIR}/QDM.env... (8 Replies)
Discussion started by: yohasini
8 Replies

6. UNIX for Dummies Questions & Answers

crontab not running script

Hi All, I am having the below script to be run from crontab, it it doesnt run. 1 * * * * /home/cobr_ext/test.sh > /home/cobr_ext/temp.txt when i run i manally it runs without any issues. Could please help me as to why doesnt it run the script.:( (7 Replies)
Discussion started by: abhi_123
7 Replies

7. Shell Programming and Scripting

Delay in running script from crontab

I am facing an issue where sometimes crontab is running script with some delay. Below is the stmt in script and it is the only stmt in script. echo "running at `date` " >> CRONCHECK.log Below is the cron entry. 0 11 * * * CRONCHECK.sh Below is the time of run each day. running at Fri... (8 Replies)
Discussion started by: Nishant Singh
8 Replies

8. UNIX for Advanced & Expert Users

Error while running Rsync through Crontab

hi All, i have implemented Rsync in my source and destination server. while running through command prompt it is working fine: ksh rsync_bravo_db.ksh usa0300uz1252.apps.mc.xerox.com /uv1402/u207/home/bravodba/bin/rsync-3.0.9/config/mrsx_rsync.cfg but later on i created a another ksh and... (4 Replies)
Discussion started by: lovelysethii
4 Replies

9. Solaris

Script problem when running on crontab

Hi guys! I created a backup script that works fine when I run manually, but when I put a crontab job to execute it the result are not the expected. (not a time problem). Here is my script: bash-3.00# cat /bk_tool/backup2.sh #!/usr/bin/csh clear set DIR_HOST='SCP08' ... (3 Replies)
Discussion started by: andredemartini
3 Replies

10. UNIX for Dummies Questions & Answers

CRONTAB - one python script is not running

Hi! I'm using a RaspberryPi with standard Raspbian. Currently I'm working on some sort of weather station. For now I have three python scripts - one which is updating txt files for website - update1m.py ( it will not be necessary in few next days so I'll delete it) , second one for updating... (4 Replies)
Discussion started by: bartocham
4 Replies
PMSD(8) 						      System Manager's Manual							   PMSD(8)

NAME
pmsd - Periodically Manic System Daemon. Manages the bizzare and sometimes unexplainable behavior exhibited by computers. SYNOPSIS
pmsd [-bcfmp] DESCRIPTION
pmsd is a rogue daemon that is spawned on a semi-regular schedule by init(8). Most of the unusual and quirky behavior associated with mis- behaving computers can be attributed to pmsd. pmsd has a number of command-line options, invoked at run-time by init(8). The ps(1) command will occasionally display the current options, but only if pmsd feels like revealing them. This is usually not the case. pmsd can be manually invoked by the pms(8) command. Make sure there is not a pmsd process already running when you use pms(8); you don't want to be on a system with multiple instances of pmsd run- ning. With no flags, pmsd runs with the default -m option, and any others it feels like using. OPTIONS
-b Bloat. Files randomly grow in size, filling up filesystems and causing quotas to be exceeded. -c Craving. System becomes hungry, eating magnetic tapes, CD-ROM discs, floppies, and anything else a hapless user loads into a remov- able media drive. -f Fatigue. System will pause for a random period of time. It is important to leave the system alone during this time. Attempts to coax the machine into normal operation could cause the spontaneous activation of all command-line switches. This is to be avoided. -m Mood swings. Process priorities and nice values are altered randomly. Swapping usually occurs with no warning, even when memory is available. This is the default behavior. -p Peeved. One or more users are selected as targets of the system's anger. Files are deleted, e-mail copied to /etc/motd, and any Usenet articles posted by the targets are crossposted to misc.test and alt.flame. NOTES
When pmsd is invoked by using the pms(8) command, pmsd ignores any command-line switches and does what it damned well pleases. SEE ALSO
pms(8) BUGS
There are no bugs; how could you ask that? HISTORY
Written by Eric L. Pederson <eric@bofh.org.uk>. 25 March 1996 PMSD(8)
All times are GMT -4. The time now is 09:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy