作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用 elasticsearch-php在我的 Laravel 应用程序中使用 XAMPP。
版本:
AppServiceProvider.php
我注册自定义侦察驱动程序的代码:
public function boot()
{
$this->app->singleton('elasticsearch', function () {
return ClientBuilder::create()
->setHosts([
'http://localhost/scout/public'
])
->build();
});
resolve(EngineManager::class)->extend('elasticsearch', function () {
return new ElasticSearchEngine(
app('elasticsearch')
);
});
}
<?php
namespace App\Search\Engines;
use Laravel\Scout\Engines\Engine;
use Laravel\Scout\Builder;
use Elasticsearch\Client;
class ElasticSearchEngine extends Engine
{
protected $client;
public function __construct(Client $client)
{
$this->client = $client;
}
/**
* Update the given model in the index.
*
* @param \Illuminate\Database\Eloquent\Collection $models
* @return void
*/
public function update($models)
{
$models->each(function($model) {
$params = [
'index' => $model->searchableAs(),
'type' => $model->searchableAs(),
'id' => $model->id,
'body' => $model->toSearchableArray()
];
$this->client->index($params);
});
}
}
php artisan scout:import App\User
Elasticsearch 包返回错误消息:
Elasticsearch\Common\Exceptions\NoNodesAvailableException : No alive nodes found in your cluster
最佳答案
首先,不要 panic :) 我认为你没有安装 Elasticsearch。安装 Elasticsearch 并解决您的问题需要 5 分钟。
安装
bin/elasticsearch
在 Linux 或 macOS .运行 bin\elasticsearch.bat
在 视窗 . curl -X GET http://localhost:9200
关于php - laravel 6 + elasticsearch-php 7.6 + xampp : No alive nodes found in your cluster,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60484170/
我是一名优秀的程序员,十分优秀!