Hi Craig, hi community,
Could you please let me know what is the right approach to upgrade elastic search?
I’ve just upgraded my Magento from 2.4.1 to 2.4.2, also upgraded composer to v 2, and not I would like to upgrade ES from 7.6 to 7.9.x.
Could I just stop the ES with:
sudo systemctl stop elasticsearch.service
then install and start my new version with the following:
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.9.3-amd64.deb
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.9.3-amd64.deb.sha512
shasum -a 512 -c elasticsearch-7.9.3-amd64.deb.sha512
sudo dpkg -i elasticsearch-7.9.3-amd64.deb
sudo systemctl start elasticsearch.service
Thank you.
Pawel