我们在一些磁盘空间有限的旧硬件上运行 nexus,并希望删除超过某个阈值的工件。
除了 find 和curl的组合之外,还有什么方法可以做到这一点?
有一个计划任务可以自动删除旧的快照版本:
不幸的是,这不适用于托管的发布存储库。
正如从给出的答案中的博客中的评论链接到的 Sonatype 博客文章中所提到的,自 Nexus 2.5 以来,有一个内置的“从存储库中删除版本”计划任务,可以将其配置为删除保留定义数量的旧版本。
这足以满足我们的需求。
删除超过 100 天无人访问且超过 200 天未被修改的所有文件:
find . -type f -atime +100 -mtime 200 -delete
清理空目录:
find . -type d -empty -delete
或者查看https://github.com/akquinet/nexus_cleaner/blob/master/nexus_clean.sh和相应的博客条目http://blog.akquinet.de/2013/12/09/how-to-clean-your -nexus-release-repositories/(删除除最后 10 个版本之外的所有版本)。
自动清除超过 30 天(你可以更改它)不从 nexus 3 下载 docker 图像
https://gist.github.com/anjia0532/4a7fee95fd28d17f67412f48695bb6de
# nexus3's username and pwd
username = 'admin'
password = 'admin123'
# nexus host
nexusHost = 'http://localhost:8081'
# purge repo
repoName = 'docker'
# older than days
days = 30
#change and run it
对于 Nexus2,您可以使用我的 Spring Boot 应用程序https://github.com/vernetto/nexusclean,您可以根据日期和要保留的最少工件数定义规则,它会生成“rm -rf”命令(使用REST API 太慢了)。
对于 Nexus3,我肯定会使用 Groovy 脚本作为“执行管理任务”。此处发布了一个groovy 脚本,用于删除 nexus 3(不是 nexus 2)上的工件