0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Cent OS7にTeraterm経由でJenkinsをインストールしてみる

Posted at

$ sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo

wgetコマンドはHTTP/HTTPSで利用できるファイル取得用コマンド。
Webサイト全体を取得できる。
-Oオプションはダウンロードしたファイルの保存先の指定。

$ sudo rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key

rpmコマンドはRPMパッケージを扱うことができるパッケージ管理コマンド。
RPMの作法に従ってインストールしたソフトウェアは、「RPMデータベース」と
呼ばれるデータベースで管理される。
ここを参照することで、インストールされているパッケージやバージョンが分かる。
アンインストールの際も、使われる。
「yum」コマンドもRPMデータベースを参照している。

$ sudo service jenkins start

ジェンキンスの起動。

http://localhost:8080
にアクセスする

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?