i am running jenkins from user jenkins thats has $PATH set to something and when i go into jenkins web interface, in the System Properties window i see different $PATH.

I have installed jenkins on centos with the native rpm from jenkins website. i am using the startup script provided with the installation using sudo /etc/init.d/jenkins start

anyone can explain to me why that happens ?

thanks.

link|improve this question

If you login as jenkins, and echo $PATH, does it match what you see in jenkins? – Dave Paroulek Apr 28 '11 at 12:21
@Dave no, it doesnt match. can't understand why – Michael Apr 28 '11 at 12:25
feedback

5 Answers

up vote 12 down vote accepted

Michael,

Two things:

When Jenkins connects to a computer, it goes to the sh shell, and not the bash shell (at least this is what I have noticed - I may be wrong). So any changes you make to $PATH in your bashrc file are not considered.

Also, if you make changes to $PATH in your local shell (one that you personally ssh into), will not show up in Jenkins.

To change the path that Jenkins uses, you have two options (AFAIK):

1) Edit your /etc/profile file and add the paths that you want there

2) Go to the configuration page of your slave, and add environment variable PATH, with value: $PATH:/followed-by/paths/you/want/to/add

If you use the second option, your System Information will still not show it, but your builds will see the added paths.

link|improve this answer
feedback

I kept running into this problem, but now I just add:

source /etc/profile

As the first step in my build process. Now all my subsequent rules are loaded for Jenkins to operate smoothly.

link|improve this answer
feedback

I found two plugins for that. One loads the values from a file and the other lets you configure the values in the job configuration screen.

Envfile Plugin — This plugin enables you to set environment variables via a file. The file's format must be the standard Java property file format.

EnvInject Plugin — This plugin makes it possible to add environment variables and execute a setup script in order to set up an environment for the Job.

link|improve this answer
feedback

You can also edit the /etc/sysconfig/jenkins file to make any changes to the environment variables, etc. I simply added source /etc/profile to the end of the file. /etc/profile has all all of the proper PATH variables setup. When you do this, make sure you restart Jenkins

/etc/init.d/jenkins restart

We are running ZendServer CE which installs pear, phing, etc in a different path so this was helpful. Also, we don't get the LD_LIBRARY_PATH errors we used to get with Oracle client and Jenkins.

link|improve this answer
feedback

I tried /etc/profile, ~/.profile and ~/.bash_profile and none of those worked. I found that editing ~/.bashrc for the jenkins slave account did.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.