Shell script with Java code in Cron


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Shell script with Java code in Cron
# 1  
Old 01-15-2014
Shell script with Java code in Cron

Dear All,

I have a shell script which has JAVA code inside it runs perfectly on command line. But while I set it on cron, all rest of the script runs but Java code doesnt.

Code:
java -cp "lib/common-client.jar:lib/commons-beanutils-1.7.0.jar:lib/commons-betwixt-0.8.jar:lib/commons-collections-3.1.jar:lib/commons-collections-
3.2.jar:lib/commons-configuration-1.2.jar:lib/commons-dbcp-1.2.1.jar:lib/commons-dbcp-1.2.2.jar:lib/commons-digester-1.7.jar:lib/commons-io-1.2.jar:
lib/commons-io-1.3.1.jar:lib/commons-lang-2.1.jar:lib/commons-lang-2.2.jar:lib/commons-logging-1.0.4.jar:lib/commons-logging-1.1.jar:lib/commons-log
ging-adapters-1.1.jar:lib/commons-logging-api-1.1.jar:lib/commons-net-1.4.0.jar:lib/commons-pool-1.2.jar:lib/jconn3.jar:PDL.jar:." com.local.myPDWriter

Can you please help me out if I need to set JAVA path or any other file while setting up on cron ?

Last edited by vbe; 01-15-2014 at 09:39 AM..
# 2  
Old 01-15-2014
Set the environment properly in the shell script ( e.g. path to java... etc...) at the beginning and it will work
# 3  
Old 01-20-2014
I have csh as default shell and writting a bash script. When I run the script from command like (csh), its running file.
But not from cron.

Can I source .csh in bash script ?
# 4  
Old 01-20-2014
If you use csh as default shell why not write your script so it uses csh and then at the beginning of your script you dont forget to add the source instruction...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Passing Username & password through shell script to java code

Hi, I have a shell script (script.sh) in which we are calling java code which asks for Username: Password: for authentication purpose currently we are passing the credential manually and run the script. but I am trying echo -e "user_id\npassword" | script.sh but its not... (1 Reply)
Discussion started by: rakeshtomar82
1 Replies

2. UNIX for Dummies Questions & Answers

Script Shell in java code

Hello, I try to run a script shell from a java program: but it runs only if i do :chmod 777 myShellScript in the terminal Please how can i insert chmod 777 in my java code without going through the terminal? Thank you (1 Reply)
Discussion started by: chercheur857
1 Replies

3. Programming

Script shell in java code

Hello, Please i want to insert this code in a java program because i need to call a java function inside the while: Please how can i do? thank you so much (9 Replies)
Discussion started by: chercheur857
9 Replies

4. Shell Programming and Scripting

Code java in script shell

Hello; Is it possible to insert Java code in a shell script, if so how please? Thank you (0 Replies)
Discussion started by: chercheur857
0 Replies

5. Programming

Script Shell in java code

Hello, This is my script shell: echo Mon premier script echo Liste des fichiers : ls -la exit 0 This is my code java: public class test { public static void main(String args) { try { Process process = Runtime.getRuntime().exec("sh script1.sh"); } catch... (2 Replies)
Discussion started by: chercheur857
2 Replies

6. Shell Programming and Scripting

Block of code replacement in Java source code through Unix script

Hi, I want to remove the following code from Source files (or replace the code with empty.) from all the source files in given directory. finally { if (null != hibernateSession && hibernateSession.isOpen()) { //hibernateSession.close(); } } It would be great if the script has... (2 Replies)
Discussion started by: hareeshram
2 Replies

7. Programming

date change shell script in java code

hi, I have a code to connect to a remote Linux server through windows using SSH, with host-name, username and password built in the code. I want to add a shell script in the code which should execute automatically without any user intervention. (as u know that date change requires you/us to be... (0 Replies)
Discussion started by: tarkan
0 Replies

8. Shell Programming and Scripting

reading fixed length flat file and calling java code using shell scripting

I am new to shell scripting and I have to to the following I have a flat file with storename(lenth 20) , emailaddress(lenth 40), location(15). There is NO delimiters in that file. Like the following str00001.txt StoreName emailaddress location... (3 Replies)
Discussion started by: willywilly
3 Replies

9. Shell Programming and Scripting

cron job - shell code correction

Hi I have a website that is having problem with cron jobs... I have a cron job set up to go to a page with this code... <? include('config.php'); if($_sys->bible_email_frequency == 'DAILY') { $u = new user(); $u->send_bible_email(); } ?> If i send my browser to this page... (2 Replies)
Discussion started by: whybelieve
2 Replies

10. Programming

Re : Pass parameters from Cron job to Java code

Hello All, Hope all is fine. I am newbie to Unix. I am using Bourne Shell (sh). One of the question I have is that I am trying to read XML file and based on reading that XML file I want to run same java programs at different hours. When I run the Java code, I wanted to pass parameters to my... (1 Reply)
Discussion started by: samshaw
1 Replies
Login or Register to Ask a Question