美文网首页
nexus上传制品,报错:Not authorized for

nexus上传制品,报错:Not authorized for

作者: 87d6dc4b11a7 | 来源:发表于2023-02-09 18:58 被阅读0次
curl -X 'POST' \
  'http://192.168.59.129:8081/service/rest/v1/components?repository=devops' \
  -H 'accept: application/json' \
  -H 'Content-Type: multipart/form-data' \
  -F 'raw.directory=/test' \
  -F 'raw.asset1=@test.tar.gz;type=application/gzip' \
  -F 'raw.asset1.filename=test.tar.gz'
1675846902195.png

原因分析:匿名用户没有上传权限。

image.png

修改为用admin用户上传:

curl -X 'POST' -u admin:nexus@admin \
  'http://192.168.59.129:8081/service/rest/v1/components?repository=devops' \
  -H 'accept: application/json' \
  -H 'Content-Type: multipart/form-data' \
  -F 'raw.directory=/test' \
  -F 'raw.asset1=@test.tar.gz;type=application/gzip' \
  -F 'raw.asset1.filename=test.tar.gz'

参考:https://support.sonatype.com/hc/en-us/articles/360054967054-User-with-add-Privilege-Encounters-Not-authorized-for-requested-path-Attempting-to-Upload-to-a-Repository

相关文章

网友评论

      本文标题:nexus上传制品,报错:Not authorized for

      本文链接:https://www.haomeiwen.com/subject/bahfkdtx.html