Skip to content
mdgnkm edited this page Mar 10, 2015 · 10 revisions

Dashboard

URL: http://jenkins.secondfunnel.com/jenkins/
Default username: user
Default passowrd: willet password

SSH

  1. Locate the private key file in Dropbox: /Willet/keys/willet-generic.pem
  2. Get the Jenkins Public DNS from in the AWS Console under EC2 Dashboard / Instances (ex: ec2-54-244-82-178.us-west-2.compute.amazonaws.com)
  3. SSH using username tomcat, example console command: ssh -i willet-generic.pem tomcat@ec2-54-244-82-178.us-west-2.compute.amazonaws.com
    Note: key must not be publicly viewable for SSH to work. Use this command if needed: chmod 400 willet-generic.pem
  4. SSH again using the username bitnami onto jenkins.secondfunnel.com: ssh bitnami@jenkins.secondfunnel.com. As this user, you can run sudo commands.

Syncing the Time

If the error Signature not yet current: YYYYMMDDTxxxxxxZ is still later than YYYYMMDDTxxxxxxZ (YYYYMMDDTxxxxxxZ + 5 min.) appears during a build, run the following commands as a privileged user:

  1. ntpq -p to determine if ntp is installed/running on the machine
  2. sudo apt-get install ntp if ntp is not installed
  3. sudo service ntp stop
  4. sudo ntpdate -s ntp.ubuntu.com
  5. sudo service ntp start

Clone this wiki locally