Skip to content

Jenkins tips

Daniel Khashabi edited this page Apr 26, 2016 · 1 revision

Jenkins

A working Jenkins is on silverbridge at the following location:

/scratch/jenkins/jenkins/war/target

Running Jenkins:

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  
Clone this wiki locally