1.背景
2. 安装过程
2.1 先安装JDK
yum -y install java-1.8.0-openjdk*
2.1 安装 jenkins
参照这个文章来做:https://pkg.jenkins.io/redhat-stable/
安装 wget
yum install wget
导入 key
sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo
sudo rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
启动安装 jenkins
yum install jenkins
至此jenkins安装完成。
3. 设置向导
3.1 启动jenkins
systemctl start jenkins
这时打开网址:http://192.168.134.215:8080/ 就可以访问了。
下面还要注意防火墙的设置。
3.2 防火墙开通 8080端口,并重启防火墙
firewall-cmd --add-port=8080/tcp --permanent
firewall-cmd --reload
3.3 启动前配置
参考 https://www.jenkins.io/zh/doc/book/installing/ 进行启动前配置
4. 遇到的问题
Jenkins远程执行shell 出现 command not found
- 问题:Jenkins远程执行shell 时,出现提示java: command not found;
- 原因是:远程执行shell脚本时,不会自动加载环境变量,导致出现此错误,
- 解决方案:就是在脚本前加上这段代码即可 source /etc/profile;
示例
source /etc/profile
cd /root/shell
sh erp-shop-h5-server.sh
5. 参考
https://www.jenkins.io/zh/doc/book/installing/
https://blog.csdn.net/gexiaoyizhimei/article/details/95374890
https://www.cnblogs.com/mmzs/p/12092982.html#_label1_0
https://blog.csdn.net/f820306455/article/details/84390444
https://www.cnblogs.com/phpshen/p/5842118.html
网友评论