我正在尝试在Artifactory上搜索我的仓库中的所有文件。我安装了Go,并使用Jfrog来查询搜索:
[Info] Searching artifacts...
[Info] Found 0 artifacts.
[]
返回:
{{1}}
为什么不返回此回购邮件中的所有文件夹?我相信我的配置也正确设置。
答案 0 :(得分:3)
在CLI中使用搜索功能时,您不应该指定https://url/artifactory
。
您可以使用jfrog rt s -h
查看CLI的搜索帮助,并且您会看到用法是:
jfrog rt s [command options] <search pattern>
搜索模式应该:
Specifies the search path in Artifactory, in the following format: <repository name>/<repository path>
URL实际上是一个命令选项--url=http://myurl:myport/artifactory
,如果在运行搜索命令之前使用jfrog rt config
设置Artifactory服务器详细信息,则可以忽略该选项。
您可以阅读更多内容并找到一些代码段示例here