user3846091
user3846091

Reputation: 1703

Bash Script unable to run Java Program as cron job

I am trying to run a .class file from a bash script every 1 minute using the crontab. I get the error Could not find or load main class Cron_Read_Send_CapacityData_To_Graphite. I have already set environment variable on my machine.

If i run the bash script from the terminal it works fine.Note the bash script and the java class file are in the same folder

Script:

$ cat Run_Cron_Read_Send_CapacityData_To_Graphite.sh
#!/bin/bash

java Cron_Read_Send_CapacityData_To_Graphite >> /home/marshell/graphite_cronjobs/Cron_Read_Send_CapacityData_To_Graphite.log

Cron entry:

$ crontab -e

*/1 * * * * /home/marshell/graphite_cronjobs/Run_Cron_Read_Send_CapacityData_To_Graphite.sh >> /home/marshell/graphite_cronjobs/debug_cronjob.log 2>&1

Error:

Error: Could not find or load main class Cron_Read_Send_CapacityData_To_Graphite

Upvotes: 0

Views: 2655

Answers (1)

Elliott Frisch
Elliott Frisch

Reputation: 201477

You error message indicates that your classpath isn't set correctly for the script to find Cron_Read_Send_CapacityData_To_Graphite.class, I would use something like -

CP=/home/marshell/graphite_cronjobs # The classpath to use
LF=$CP/Cron_Read_Send_CapacityData_To_Graphite.log # the log file
java -cp $CP Cron_Read_Send_CapacityData_To_Graphite >> $LF

Upvotes: 1

Related Questions