This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #If Mastodon display errors, this is likely due to a wrong number of replicas. You can fix this with the following commands: | |
| #In case of an index with a yellow status, proceed with the second command | |
| curl -XGET "http://localhost:9200/_cat/indices" | |
| #replace <index> with the name of the index with a yellow status | |
| curl -X PUT "localhost:9200/<index>/_settings?pretty" -H 'Content-Type: application/json' -d' | |
| { | |
| "index" : { | |
| "number_of_replicas" : 0 | |
| } | |
| } |