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 :)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I think this can help you out. Set an Environment Variable The shell should be like
The batch should be like
|
|||
|
|
|
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 - Cheers |
|||
|
|
|
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
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! |
|||
|
|