Nexus:将文件上传到获取时连接超时

Nexus: Getting connection timed out while uploading file into getting

使用 jenkins 管道脚本将 .tgz 文件上传到 nexus 时出错。

Stage using in my pipeline script as

阶段('Upload tar file into nexus') { 脚步 { 嘘“”“ curl -f -v $NEXUS --upload-file partnerPortal-* http://localhost:8080/repository/partnerFrontEnd-test/partnerPortal-date +"%d-%m-%Y-%H.%M".tgz """ } }

注意:我在同一台服务器上安装了 jenkins 和 nexus。我的主机文件有 127.0.0.1 localhost

在 curl 命令中添加 -u 后,解决了我的问题。

curl -f -v -u $NEXUS --upload-file customerPortal-* https://localhost:8081/-date +"%d-%m-%Y-%H.%M".tar.gz