web-dev-qa-db-ja.com

ubuntu 12.04から14.04にアップグレードした後、jenkinsをインストール/回復できない

Ubuntuを12.04から14.04にアップグレードしたところ、以前にインストールして設定したジェンキンが壊れていることに驚きました。 apt-get install jenkinsまたはapt-cache search jenkinsを実行すると、悲惨さを増します。 jenkinsjenkins-clijenkins-commonも表示されません。

apt-get install jenkinsを実行すると、エラーが発生します。

buildman@pluto:~$ Sudo apt-get install jenkins
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package jenkins is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'jenkins' has no installation candidate

私のOSの詳細:

buildman@pluto:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.1 LTS
Release:    14.04
Codename:   trusty

(私が作成した)混乱から抜け出す方法についてのポインタは、非常に役立ちます。

6
Sandeep

Jenkinsは、Trustyの公式Ubuntuリポジトリから削除されました。理由は https://bugs.launchpad.net/ubuntu/+source/jenkins/+bug/1294005 に記載されていますが、短いバージョンはより安全で最新の状態を維持しやすいということです-今後、アップストリームリポジトリを使用する場合。その方法の詳細は https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+Ubunt で入手できます。

6
lazyreader

ジェニキンのインストール

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'

須藤apt-getアップデート

Sudo apt-get install jenkins

http:// localhost:808

Sudo cat/var/lib/jenkins/secrets/initialAdminPassword(管理者パスワードを取得するため)

須藤apt-getアップデート

Sudo apt-get install jenkins

あなたは最後の2行をスキップすることができますが、私はその方法に従った

1
subhashis