Jenkins系列(一): 安装

目录

参考官网进行如下操作。

This is the Debian package repository of Jenkins to automate installation and upgrade. To use this repository, first add the key to your system:

1
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -

Then add the following entry in your /etc/apt/sources.list:

1
deb http://pkg.jenkins-ci.org/debian binary/

Update your local package index, then finally install Jenkins:

1
2
sudo apt-get update
sudo apt-get install jenkins

完成后,浏览器端输入 [主机ip 或 主机域名]:8080,即可看到如下界面,说明安装成功。

安装成功