es6.8 버전으로 제한됩니다
laravel 5.5 버전
필수 구성 요소를 설치하세요
composer require tamayo/laravel-scout-elastic composer require laravel/scout
작성자가 laravel/scout에서 오류를 보고하는 경우
Using version ^6.1 for laravel/scout ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages. Problem 1 - tamayo/laravel-scout-elastic 4.0.0 requires laravel/scout ^5.0 -> satisfiable by laravel/scout[5.0.x-dev]. - tamayo/laravel-scout-elastic 4.0.0 requires laravel/scout ^5.0 -> satisfiable by laravel/scout[5.0.x-dev]. - tamayo/laravel-scout-elastic 4.0.0 requires laravel/scout ^5.0 -> satisfiable by laravel/scout[5.0.x-dev]. - Conclusion: don't install laravel/scout 5.0.x-dev - Installation request for tamayo/laravel-scout-elastic ^4.0 -> satisfiable by tamayo/laravel-scout-elastic[4.0.0]. Installation failed, reverting ./composer.json to its original content.
그런 다음
composer require laravel/scout ^5.0
구성 파일(config/app.php)을 수정하고 다음 두 공급자를 추가합니다
'providers' => [ //es search 加上以下内容 Laravel\Scout\ScoutServiceProvider::class, ScoutEngines\Elasticsearch\ElasticsearchProvider::class, ]
추가를 완료하고 명령을 실행하고 구성 파일을 생성합니다
php artisan vendor:publish --provider="Laravel\Scout\ScoutServiceProvider"
config/scout.php를 수정
'driver' => env('SCOUT_DRIVER', 'elasticsearch'), 'elasticsearch' => [ 'index' => env('ELASTICSEARCH_INDEX', '你的Index名字'), 'hosts' => [ env('ELASTICSEARCH_HOST', ''), ], ],
.env에서 ES 계정을 구성하세요.Password@Connect
ELASTICSEARCH_HOST=elastic:密码@你的域名.com:9200
명령줄 파일을 생성하여 매핑을 생성하고 app/Console/Commands
<?php namespace App\Console\Commands; use GuzzleHttp\Client; use Illuminate\Console\Command; class ESInit extends Command { protected $signature = 'es:init'; protected $description = 'init laravel es for news'; public function __construct() { parent::__construct(); } public function handle() { //创建template $client = new Client(['auth'=>['elastic', 'yourPassword']]); $url = config('scout.elasticsearch.hosts')[0] . '/_template/news'; $params = [ 'json' => [ 'template' => config('scout.elasticsearch.index'), 'settings' => [ 'number_of_shards' => 5 ], 'mappings' => [ '_default_' => [ 'dynamic_templates' => [ [ 'strings' => [ 'match_mapping_type' => 'string', 'mapping' => [ 'type' => 'text', 'analyzer' => 'ik_smart', 'ignore_above' => 256, 'fields' => [ 'keyword' => [ 'type' => 'keyword' ] ] ] ] ] ] ] ] ] ]; $client->put($url, $params); // 创建index $url = config('scout.elasticsearch.hosts')[0] . '/' . config('scout.elasticsearch.index'); $params = [ 'json' => [ 'settings' => [ 'refresh_interval' => '5s', 'number_of_shards' => 5, 'number_of_replicas' => 0 ], 'mappings' => [ '_default_' => [ '_all' => [ 'enabled' => false ] ] ] ] ]; $client->put($url, $params); } }로 이동하세요