LoginSignup
2
3

More than 5 years have passed since last update.

Jenkinsをubuntu14.04にインストール

Posted at

Jenkinsをインストール

以下の4つのコマンドを実行すれば完了

wget -q -O - https://jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list'
sudo apt-get update
sudo apt-get install jenkins

Jenkinsにアクセスしてみる

以下のコマンドでJenkinsを起動
sudo service jenkins start

ポート8080でアクセスできる
http://ドメイン:8080

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3