LaravelでElastiCache for Redisを使うと確立でMOVEDになる
clustersを設定しないと確立でMOVEDでエラーになる模様。
よって以下のようにredisの項目を直す。
config/database.php
'redis' => [
'client' => 'predis',
'options' => [
'cluster' => 'redis',
],
'clusters' => [
'default' => [
[
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => 0,
]
],
],
],
Author And Source
この問題について(LaravelでElastiCache for Redisを使うと確立でMOVEDになる), 我々は、より多くの情報をここで見つけました https://qiita.com/zdjjs/items/de901c4f2f2dde684279著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .