- A+
所属分类:linux技术
一、jenkins简介
二、jenkins安装
1、安装jdk(JDK版本>=8,openjdk也可以)
[root@localhost ~]# yum install -y java-1.8.0-openjdk java-1.8.0-openjdk-devel # 安装openjdk,jenkins基于java开发
2、安装jenkins
[root@localhost ~]# wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat/jenkins.repo [root@localhost ~]# cat /etc/yum.repos.d/jenkins.repo [jenkins] name=Jenkins baseurl=http://pkg.jenkins.io/redhat gpgcheck=1 #为1时会检测key [root@localhost ~]# rpm --import https://pkg.jenkins.io/redhat/jenkins.io.key # 安装jenkins key [root@localhost ~]# yum install -y jenkins # 安装jenkins
3、启动jenkins
[root@localhost ~]# service jenkins start # 启动方式一 [root@localhost ~]# systemctl start jenkins # 启动方式二 [root@localhost ~]# /etc/init.d/jenkins start # 启动方式三
4、查看jenkins
[root@localhost ~]# ps aux | grep jenkins # 查看jenkins进程是否启动 [root@localhost ~]# lsof -i:8080 # 根据8080端口,查看占用端口的pid [root@localhost ~]# netstat -tunlp | grep 8080 # 根据8080端口,查看占用端口的pid。也可以根据pid,查看端口。
5、查看初始化密码
6、