- GitHub Plugin
- GitHub pull request builder plugin
- Github OAuth Plugin
- Project Description Setter Plugin
- Green Balls
- Plot Plugin
- Workspace Cleanup Plugin
Forked from textarcana/install-jenkins-centos-6-3.sh
Created
October 2, 2013 09:22
-
-
Save bzz/6791168 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo | |
sudo rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key | |
sudo yum -y install jenkins | |
sudo yum -y install java-1.7.0-openjdk.x86_64 | |
# Login as the jenkins user and specify shell explicity, | |
# since the default shell is /bin/false for most | |
# jenkins installations. | |
sudo su jenkins -s /bin/bash | |
ssh-keygen | |
exit | |
sudo service jenkins start | |
sudo tail -f /var/log/jenkins/jenkins.log | |
# see https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+RedHat+distributions | |
# and http://stackoverflow.com/questions/15314760 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# set the server time to UTC | |
sudo mv /etc/localtime /etc/localtime.bak | |
sudo ln -s /usr/share/zoneinfo/UTC /etc/localtime | |
# sync to ntpd server time | |
sudo ntpd -q | |
# start ntpd after reboot | |
sudo chkconfig ntpd on | |
# cf: ntpd --list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment