Skip to content

Instantly share code, notes, and snippets.

View benjja's full-sized avatar

Benjamin Richter benjja

View GitHub Profile
@benjja
benjja / fix_errors.txt
Last active September 25, 2023 20:29
Opensearch single node config snippets for mastodon
#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
}
}