Tuesday, September 15, 2015

Free domain name

http://www.dot.tk/en/index.html?lang=en

Linux Email server

http://www.iredmail.org/

Thursday, January 22, 2015

Git timeout settings of 10 mins

Many folks would have faced this problem that git command times out (after 10 mins) . In linux (centos) this timeout setting can be changed by editing the file

  • " sudo vim /etc/init.d/jenkins" 
  • Add -Dorg.jenkinsci.plugins.gitclient.Git.timeOut=60 to JAVA_CMD 
    • JAVA_CMD might look like
 JAVA_CMD="$JENKINS_JAVA_CMD $JENKINS_JAVA_OPTIONS -Dorg.jenkinsci.plugins.gitclient.Git.timeOut=60 -DJENKINS_HOME=$JENKINS_HOME -jar $JENKINS_WAR


Start jenkins service and it will not time out till 60 mins.  The time 60 is in minutes.