Hi all,
if I create a snapshot with the following command
curl -XPUT localhost:9200/_snapshot/my_backup -d '{
"type": "fs",
"settings": {
"location": "/opt/elasticsearch/elasticsearch-repo/my_backup"
}
}'
then the created snapshot has permission rwxr-xr-x and the owner is elasticsearch and group is elasticsearch. The elasticsearch service run as elasticsearch:elasticsearch.
The directory /opt/elasticsearch/elasticsearch-repo/ has the permission rwxrwx---.
How to create a snapshot so that group has write permission?
Many thanks.