-
Notifications
You must be signed in to change notification settings - Fork 142
Jenkins tips
Daniel Khashabi edited this page Apr 26, 2016
·
1 revision
A working Jenkins is on silverbridge
at the following location:
/scratch/jenkins/jenkins/war/target
java -jar jenkins.war
- Tip: If Jenkins gives you
java.net.BindException: Address already in use
error, kill the previous process, and try running it again:
lsof -i:8080
kill <pid>
- If you add more projects on Jenkins it is likely going to run out of memory. If you see the error
java.lang.OutOfMemoryError: PermGen space
addd an argument to increase the Java memory:
java -XX:MaxPermSize=4g -jar jenkins.war