gpt4 book ai didi

linux - 使用 curl 的 bash 脚本在 apache solr 中索引数据

转载 作者:太空宇宙 更新时间:2023-11-04 09:50:54 25 4
gpt4 key购买 nike

我再次发布同样的问题。请帮我解决这个问题。这是我编写的 bash 脚本的代码

declare -i i=1
for file in searchdumps/*
do
echo "indexing $file"
i=$((i+1))
curl "'http://localhost:8983/solr/update/extract?literal.id=document$i&uprefix=attr_content&commit=true' -F \"myfile=@/home/test/$file\""
done

路径是正确的,直接应用命令就可以,但是执行这个脚本的时候就出错了

indexing searchdumps/1.pdf curl: (1) Protocol 'http not supported or disabled in libcurl

最佳答案

请试试这个:-

curl "http://localhost:8080/solr/update/extract?stream.file=/home/test/$file&literal.id=document$i&commit=true"

关于linux - 使用 curl 的 bash 脚本在 apache solr 中索引数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11239586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com