我使用此命令删除弹性搜索中的旧索引。
curl -XPOST 'http://localhost:9200/_cache/clear'
curl -XDELETE 'http://localhost:9200/_ALL/'
我在SSH上使用此命令
弹性搜索:
curl -XPOST 'http://localhost:9200/_flush'
curl http://localhost:9200/_mapping
curl -XDELETE http://localhost:9200/_ALL
Laravel:
php artisan cache:clear
和MongoDB
sh -c "sync; echo 3 > /proc/sys/vm/drop_caches"
我只想删除旧的缓存和索引文件。最后我重启我的linux centos服务器:
shutdown -r now
我现在遇到同样的问题。 Elasticsearch错误:
{"error":"IndexMissingException[[shopping] missing]","status":404}
有没有人有关于这个问题的任何信息