linux搭建nuget私有仓库(Nuget.Server和Nexus)
2021/10/23 7:11:34
本文主要是介绍linux搭建nuget私有仓库(Nuget.Server和Nexus),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
nuget.org 获取API.Keys
https://blog.csdn.net/lindexi_gd/article/details/83176151 使用Nuget.Server时,需要用到API.Keys
Nuget.Server
1、https://www.cnblogs.com/cqhaibin/p/8051834.html 这个在Chrome下图片不显示,可以用火狐查看。
2、
.Net Core 打包
https://www.cnblogs.com/shanyou/p/5814683.html 主要是介绍dotnet pack 参数
vs 把nuget上传批处理命令添加到项目右键
https://www.cnblogs.com/liuxiaoji/p/9605851.html
Nexus
https://www.cnblogs.com/daikainan/p/14288044.html
工具类:
https://www.nuget.org/packages/dotnet-validate
碰到的问题:
1)docker pull sonatype/nexus3
Using default tag: latest
Error response from daemon: pull access denied for nexus3, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
使用docker login后依然不行,使用 docker run -d -p 5501:8081 --name nexus sonatype/nexus3 直接启动容器的方式,会自动拉取sonatype/nexus3 镜像。不知道为什么........
2)nexus3 容器 status 为Exited (255)
使用docker logs nexus3 查看日志:
mkdir: cannot create directory '../sonatype-work/nexus3/log': Permission denied
mkdir: cannot create directory '../sonatype-work/nexus3/tmp': Permission denied
解决方案:
#启动nexus时可能会遇到权限的问题,对挂载文件夹赋予最高权限 chmod 777 /home/nexus/nexus-data
3)查看日志
docker logs nexus3 -f
这篇关于linux搭建nuget私有仓库(Nuget.Server和Nexus)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)
- 2024-11-08linux的 vi编辑器中搜索关键字有哪些常用的命令和技巧?-icode9专业技术文章分享
- 2024-11-08在 Linux 的 vi 或 vim 编辑器中什么命令可以直接跳到文件的结尾?-icode9专业技术文章分享
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法