Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the working /.jenkins folder under a specific user in home on Linux. I want to start Jenkins with another user, but re-use the .jenkins folder of the other user. How can I do this? Jenkins offers some instructions but I don't get it :)

share|improve this question

3 Answers

up vote 1 down vote accepted

I think this can help you out.

Set an Environment Variable JENKINS_HOME pointing to the .jenkins folder and run the Jenkins command.

The shell should be like

export JENKINS_HOME=/usr/jhon/.jenkins

java -jar jenkins.war

The batch should be like

  SET JENKINS_HOME=C:\users\jhon\.jenkins

 java -jar jenkins.war
share|improve this answer

Usually, you need to set the permissions for those files to be accessed by the new user.

See here: How to run jenkins as a different user -
especially the answers of Sagar and Peter Tran .

Cheers

share|improve this answer

here are the options you have:

a) assuming your deploying jenkin into tomcat,you can do the following:

in your catalina.home/conf/localhost/jenkins.xml

<?xml version="1.0" encoding="UTF-8"?>
<Context docBase="/home/enomad/projects/jenkins/jenkins-master/war/target/jenkins" path="" reloadable="true">
 <Environment name="JENKINS_HOME" value="/home/enomad/projects/jenkins-home"
         type="java.lang.String" override="false"/>
</Context>

b) you can export the JENKINS_HOME=toWhateveryouwant as mentioned by harsha previous post

c) you can extend your JAVA_OPTS params and add -DJENKINS_HOME=/path/to/jenkins_home/ as described here: Jenkins Mailing list

good luck!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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