您现在的位置是:首页 >其他 >.netcore3.1+jenkins+Docker网站首页其他
.netcore3.1+jenkins+Docker
一.git安装
1.下载
https://github.com/git/git/releases/tag/v2.40.1
2.将本地的安装包上传到 linux 服务器上,我这里放在 /opt/git/ 目录下
3.解压压缩包,得到目录 git-2.40.1,位置在 /opt/git/git-2.40.1
tar -zxvf git-2.40.1.tar.gz
4.提前安装可能需要的依赖
yum install curl-devel expat-devel openssl-devel zlib-devel gcc-c++
yum install perl-ExtUtils-MakeMaker automake autoconf libtool make
5.编译安装 Git
进入到 git-2.40.1 目录,执行编译安装等命令
cd git-2.40.1
make prefix=/usr/local/git all
make prefix=/usr/local/git install
此时你如果使用git --version 查看git版本的话,发现git仍然是1.8.1版本
6.将 git 加入环境变量中,修改 /etc/profile 文件,在 profile 文件末尾追加配置内容
1) 你可以用下面的命令查看git所在的路径:
whereis git
2) 然后在文件的最后一行,添加下面的内容,然后保存退出
export PATH=/usr/local/git/bin:$PATH
7.刷新 profile 配置文件
source /etc/profile
8.查看是否配置成功
git --version
二.jenkins 2.387.2安装
1.下载 jdk17
www.oracle.com/java/technologies/downloads/#java17
2.选择rpm
3.好传到 /opt/java,切换到次位置执行
rpm -ivh jdk-17_linux-x64_bin.rpm
4.下载rpm
https://repo.huaweicloud.com/jenkins/redhat-stable/jenkins-2.387.2-1.1.noarch.rpm
5.安装
rpm -ivh jenkins-2.387.2-1.1.noarch.rpm
6.修改Jenkins默认端口
vi /etc/sysconfig/jenkins
JENKINS_PORT="8888"
如果不无效
vim /usr/lib/systemd/system/jenkins.service
# 修改为想要的端口
Environment="JENKINS_PORT=8989"
# 重新加载配置文件
systemctl daemon-reload
7.启动
systemctl start jenkins
8.访问主页输入:密码e22cdc2153fa4e6d952f0a78733d09f2
9.选择社区推荐插件,等就完了
10.用户可以直接用admin
三.docker安装
1.具体地址参烤
https://blog.csdn.net/wang_peng/article/details/128476068
2.主要安装指令
yum -y install gcc
yum -y install gcc-c++
yum install -y yum-utils
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum makecache fast
yum install docker-ce-20.10.11 docker-ce-cli-20.10.11 containerd.io
四.gitee创建项目
五.netcore添加gitee
六.发布