Setting environment variables in Cron file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Setting environment variables in Cron file
# 1  
Old 07-18-2011
Setting environment variables in Cron file

Hi,

In Cron file i'm using username and password hard-coded and now i wann to use environmental veraiables in cron file.

But Could you please guide me how to use these environmental variables in cron file ?



Thanks,
Shyamu.A
# 2  
Old 07-18-2011
No differences, but when you use cron, your env is not same as if you log in. Depends which *nix system you have.

In then cron env the best default idea is to set env.

Easy to test. Make next envtst.sh script and run it and then run it using cron. Locate it ex. dir /tmp.
Code:
cat <<EOF > /tmp/envtst.sh
#!/usr/bin/sh
env > /tmp/envtst.sh.tmp
EOF
chmod a+rx /tmp/envtst.sh

And then run crontab -e to edit cronfile and add next line
Code:
* * * * *  /tmp/envtst.sh  >> /tmp/envtst.sh.log 2>&1

Wait about minute and look file /tmp/envtst.sh.tmp

That is your env when you use cron. It's not same as login. PATH is something, not enough usually and so on. Usually HOME is.

One method is to execute your .profile

Example cron, if your /tmp/envtst.sh.tmp include HOME or hardcode path
Code:
* * * * * cd $HOME; ./myjob.sh >> /tmp/job1.log 2>&1
# * * * * * cd /somedir; ./myjob.sh >> /tmp/job1.log 2>&1

And myjob.sh is something:
Code:
#!/usr/bin/someshell   # sh, ksh, bash, ...

# do setup file = set environmnet
. ./my.setup
# or ex.
. ./.profile

cd $HOME
dosome job ...

my.setup
Code:
# add PATH, but not wait so much
PATH=$PATH:/bin:/usr/bin:/usr/local/bin:/some/other/bin
# or set  it - overwrite
PATH=/bin:/usr/bin:/usr/local/bin:/some/other/bin
DBNAME=somedb
LOGDIR=/some/other/loc/log
# variables are global
export PATH DBNAME LOGDIR

Ofcource you can create your script always using this idea - not trust env, set it.

Last edited by kshji; 07-18-2011 at 12:41 PM..
# 3  
Old 07-19-2011
Hi ,

I'm unable to understand your answer and extremly sorry if I wronly stated in the question.

Leeme re-write my question what I wann to be..

In my cron file curently Ex:

45 05 * * 0-4 ksh /u/prject/bin/transfer.sh username password ESP8661 >> /u/prject/log/Transfer_ESP8661.LOG 2>&1

Here username and password hard coded. And now i don't want to use like this as evry time whenever i want to change password i have to change all these files.

For that i wann to use like environmental variables instead of hard coded user name and password.

Could you please advise me how can I write in cron file ????
# 4  
Old 07-19-2011
First, you have to edit your transport.sh so that it takes input from environment variable instead of command line argument.

Second, you have to set the environment variable as VAR=value in the cron. But which is again going to be as similar as what u have now in the command line, you will have to edit again and again.

Might be, you will have to let the script take input from somewhere else, such as file or database; that too in sequence !!!
# 5  
Old 07-20-2011
Hi Greek ,

Thanks for information.

I'm going to the second point which suggested as we had already created environmental variables in some other file.(set_db_env.sh)

This file (set_db_env.sh) we are using in other shell script programs also.

but need to import this file into CRON.Could you please let me know how to import set_db_env.sh in CRON
and how to use that.

Please give with exmple for understanding (I'm using KSH).



Thanks,
Shyamu.A
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Setting environment variables from a file :

Hi, I have around 10 environment variables in my shell script. i want to set this all in a file and just call that file in my shell script. How can i do that ? Please help. TIA! (6 Replies)
Discussion started by: qwertyu
6 Replies

2. Shell Programming and Scripting

setting environment variables with space

Hi, I'm having problems setting environment variable that has space value. Below is my shell script. export LINE=$@ TO=`echo $LINE | awk '{print $1}'` CC=`echo $LINE | awk '{print $2}'` BC=`echo $LINE | awk '{print $3}'` echo "TO=$TO" echo "CC=$CC" echo "BC=$BC" echo "1=$1" echo... (5 Replies)
Discussion started by: adshocker
5 Replies

3. UNIX for Dummies Questions & Answers

Setting up environment variables

Hi all, This is my first post here. I need to set up a few environment variables with a shell script. Some are hard-coded, but some should come from other commands or as input from the user. How do I do that? For example, I need to export a variable as such: export DISPLAY=127.0.0.1:8.0 ... (2 Replies)
Discussion started by: exchequer598
2 Replies

4. UNIX for Dummies Questions & Answers

Setting Environment Variables

#!/bin/bash if ; then ASS1_DATA_DIR=./ echo $ASS1_DATA_DIR export ASS1_DATA_DIR echo "data dir" fi if ; then ASS1_OUTPUT_DIR=./ export ASS1_OUTPUT_DIR fi I want to create a new environment variable ASS1_DATA_DIR and ASS1_OUTPUT_DIR in bash and set them to the current... (4 Replies)
Discussion started by: bigubosu
4 Replies

5. UNIX for Dummies Questions & Answers

Need help with setting up environment variables

hi all, I would appreciate if some one could explain me the difference between setting up the variables as shown below HOME=${HOME:-"/home/user1"} HOME=/home/user1 (1 Reply)
Discussion started by: SSSB
1 Replies

6. Shell Programming and Scripting

Help in Setting Environment variables in TCSH

Hello All, I am writing a script to set some environment variables which are required for a particular application. I understand that the environment variables set by Shell script can, at the max, be valid for the session. They will have to be set again once the session is closed and re-opened.... (1 Reply)
Discussion started by: kssandeep
1 Replies

7. Solaris

Setting environment variables within cron jobs!!

Is it possible to use environment variables within cron jobs. I am using a cron job to run a c program at regular intervals. The C program uses a library and i have set the library path in the LD_LIBRARY_PATH environment variable. But when i ran the job i got the error library not found!! Any... (1 Reply)
Discussion started by: atheek
1 Replies

8. Shell Programming and Scripting

Setting environment variables in Makefile

I've seen a few other threads like this, but they either went unanswered or failed to answer my question. How do I set an environment variable in a Makefile? What I'm trying to do is use GNU make to automate an ant build. In order to run ant, I've got to first set a few environment... (1 Reply)
Discussion started by: Bags
1 Replies

9. Shell Programming and Scripting

Setting up Environment Variables

Hi all, I am trying to set up some variables in a shell script. The variables contain values of various paths needed to run a java module. The problem is the variables dont seem to be setting at all. here is what i am trying to do : JAR_HOME=/home/was5/bdcms/scheduledjobs/lib export... (6 Replies)
Discussion started by: rpandey
6 Replies

10. UNIX for Dummies Questions & Answers

setting environment variables ???

Hello, I want to set some environment variables with this script: ip=$@ echo Remote Computer: $ip PERLDB_OPTS="CallKomodo=$ip:9000 RemotePort=$ip:9010 PrintRet=0" export PERLDB_OPTS PERL5LIB=/opt/komodo export PERL5LIB echo PERLDB_OPTS: $PERLDB_OPTS echo PERL5LIB: $PERL5LIB But it... (5 Replies)
Discussion started by: Gargamel
5 Replies
Login or Register to Ask a Question