Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
01-21-2007, 10:45 PM
|
#1
|
Member
Registered: Aug 2006
Posts: 153
Rep:
|
cron job not working
hi everybody,
I have a updated the crontab.
The aim of the update is to run a java program. I have written a shell script to run the program and this program has been added to the cron job to run it daily. If the program is called from the command line, it is working fine without any errors. But it is not working when executed from cron. But when I checked with the cron log, it is showing that the job has been run at the scheduled time. But i never found the output of the program.
I would be really thankful if anyone could help me with this.
Thank you,
bittus
Last edited by bittus; 01-21-2007 at 10:46 PM.
|
|
|
01-21-2007, 11:00 PM
|
#2
|
Senior Member
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 14.0
Posts: 4,141
Rep: 
|
cron runs with a different environment to your normal login shell. It could be that it can't find something in your path, or your JAVA_HOME settings, etc can't be found. Try outputting the results (stdout & stderr) to a file in /tmp or piping them to an email to find out where it's going wrong.
|
|
|
01-21-2007, 11:43 PM
|
#3
|
Member
Registered: Aug 2006
Posts: 153
Original Poster
Rep:
|
hi gilead,
Thank u for the update.
I tried outputting a msg(the msg is "Worked") to a file to check if the cron job executed successfully. i am getting outputs to the file. So its confirmed that cron is trying to execute the line.
Also that the cron job is executed as root. So for root user, the particular command is working fine !!!!
Last edited by bittus; 01-22-2007 at 12:24 AM.
|
|
|
01-22-2007, 01:06 AM
|
#4
|
Senior Member
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 14.0
Posts: 4,141
Rep: 
|
Outputting a message will demonstrate that the cron job is run but won't highlight what is missing. Have you tried using full paths to the commands being run, ie /usr/local/jdk/bin/java (or whatever your path is) instead of just java?
|
|
|
01-22-2007, 01:21 AM
|
#5
|
Member
Registered: Aug 2006
Posts: 153
Original Poster
Rep:
|
ok gilead, i ll do that and update u. Thank u so much for the immediate reply.
I appreciate your response.
|
|
|
01-22-2007, 06:54 PM
|
#6
|
Member
Registered: Aug 2006
Posts: 153
Original Poster
Rep:
|
/home/xxx/xxx.sh | echo "Worked" >> /xxx/temm.log
This is the entry in cron job. I am getting the file temm.log, updated at the scheduled time. But the shell script does not seem to work thru cron. Whereas it is working fine with the command prompt.
|
|
|
04-27-2009, 07:44 AM
|
#7
|
LQ Newbie
Registered: Feb 2009
Posts: 1
Rep:
|
Update .sh file permissions
Hi All,
I was also facing similar issue and was able to execute java and mysql commands only from shell. Please try following if possible:
1- Create a .sh file and add java command to it with absolute path like:
/usr/local/java/bin/java TestJavaClassFile
2- Add .sh file entry with absolute path to crontab
*/30 * * * * /etc/test.sh
3- Change permission so everyone can execute .sh file
chmod 755 /etc/test.sh
Test it, hope this will help you
---------------------------------------------------------
Rakesh Rawat
rakeshrawatg@gmail.com
|
|
|
04-27-2009, 07:39 PM
|
#8
|
LQ Guru
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.x
Posts: 18,434
|
@bittus, we'd need to see the shell script. However as hinted above, the cron env is minimal to say the least, so you need to specify complete absolute paths for all cmds/progs and files used.
The script also needs to set (or source) any env variables used.
|
|
|
All times are GMT -5. The time now is 01:22 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|