How to move elasticsearch data directory?
A. You need to move the elasticsearch
folder, i.e. that's the folder which bears the same name as your cluster.name
configured in the elasticsearch.yml
file.
B. You need to modify the path.data
setting in the elasticsearch.yml
file to the new folder you've moved the data to.
So, say you are currently using /var/lib/elasticsearch
and you want to move the data folder to /foo/bar
, here is what you need to do:
> mv /var/lib/elasticsearch /foo/bar
Then in elasticsearch.yml
modify path.data
to:
path.data: /foo/bar
You'll end up with your data being stored in /foo/bar/elasticsearch
instead of /var/lib/elasticsearch
. Make sure that the elasticsearch process can access your new folder.
If you are more cautious about moving your critical data, cp with preserving all attributes (owner, group, timestamp, etc.) can help.
cp -r --preserve=all /var/lib/elasticsearch/ /foo/bar/
Open elasticsearch.yml and set path.data to new location
path.data: /foo/bar/elasticsearch/
Restart elasticsearch server. now you can safely remove source data.
rm -rf /var/lib/elasticsearch/
I want to add an annoying problem that I encountered when I was doing @Val's helpful guidance. After I did:
> mv /var/lib/elasticsearch /foo/bar
I set the
path.data: /foo/bar
But Elasticsearch did not run correctly. For example xpack security (formarly shield) authantication password turned back to its default "changeme". And also when I want to list indices, nothing shown up. Then I set the
path.data: /foo/bar/elasticsearch/
The last slash at the end of the "elasticsearch" is important I think. May be I am confusing but it solved my problem.