Jenkins通过Nexus artifact uploader 上传制品失败排查

使用Jenkins 插件Nexus artifact uploader 上传 .jar, .zip. .gzip. .tar等制品
Jenkins 使用自由风格配置构建时:
配置如下:
在这里插入图片描述
Credentials 为上传Nexus服务器的用户认证信息 ,需要在Jenkins 凭据中配置
Repository: 为Nexus上的仓库名称
在这里插入图片描述
如果为.tar结尾的包,可能需要在nexus repositories 配置中取消勾选(根据nexus版本不同) :

Validate that all content uploaded to this repository is of a MIME type appropriate for the repository format

否则会报错:

Failed to deploy artifacts: Could not transfer artifact … from/to maven-releases … Return code is: 400, ReasonPhrase:Detected content type [application/gzip, application/gzip-compressed, application/gzipped, application/x-gunzip, application/x-gzip, application/x-gzip-compressed, gzip/document], but expected [application/x-tar]: (3.37版本)
或:
Failed to deploy artifacts: Could not transfer artifact … from/to … Failed to transfer file: …tar. Return code is: 400, ReasonPhrase:Bad Request. (3.28.1版本)
按照规则正确配置后我遇到的报错:
Failed to deploy artifacts: Could not transfer artifact …tar:1.0.1 from/to maven-release (http://192.100.30.160:8081/repository/maven-release): Connection reset

使用pipeline方式配置:

        stage('上传') {
           steps {
               nexusArtifactUploader artifacts: [
                 [
                   artifactId: 'aaa', 
                   classifier: '',  ##相当于给上传的制品添加后缀
                   file: 'XXX.tar',  ##上传的文件,可以写绝对路径,这里是在workspace下
                   type: 'tar'  ##上传包的后缀 也可以是 tar.gz
                 ]
               ], 
               credentialsId: 'devops',   ##Jenkins 凭据ID
               groupId: 'com.src.XXXX', 
               nexusUrl: '192.100.30.160:8081', 
               nexusVersion: 'nexus3', 
               protocol: 'http', 
               repository: 'maven-release', 
               version: '1.0.1' 
           }
       }

使用 pipeline 无任何报错信息输出如下:
在这里插入图片描述
报错原因:
Jenkins中的用户凭据有问题,用户为ldap用户, Nexus集成了Ldap, 没有给ldap用户授权,导致认证失败 ,在nexus log/request.log 中有报错信息:

192.100.30.162 - user [21/May/2022:15:10:01 +0800] “PUT /repository/…-1.0.1.tar HTTP/1.1” 403 7792793 0 1 “Aether” [qtp1999153675-13260]

上传时权限被拒绝,但是该报错信息并没有返回Jenkins终端,导致制品上传失败但是jenkins结果仍然是success

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值