hi
can anyone share the magento2 cloud installation guide with AWS Elasticsearch or?
thanks
sayantan
Hello @awscadentia3b6
I think you want to install the Magento 2 on the cloud server with elastic search
https://www.youtube.com/watch?v=3RFw9j4ihag
Please go through the video, and if it doesn't help, let me know
hi
no. AWS elasticsearch is a specific service which must be hosted within aws t2.small with single or multiple node. the video you shared it's an installation on ec2 ubuntu only. in case of aws elasticsearch it requires certain authentication which is different from the video.
thanks
sayantan
hi
https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli.html
magento setup:install --base-url=http://127.0.0.1/magento2/ \
--db-host=localhost --db-name=magento --db-user=magento --db-password=magento \
--language=en_US --currency=USD --timezone=America/Chicago --use-rewrites=1 \
--search-engine=elasticsearch7 --elasticsearch-host=es-host.example.com \
--elasticsearch-port=9200
or
magento setup:install --base-url=http://127.0.0.1/magento2/ \
--db-host=localhost --db-name=magento --db-user=magento --db-password=magento \
--admin-firstname=Magento --admin-lastname=User --admin-email=user@example.com \
--admin-user=admin --admin-password=admin123 --language=en_US \
--currency=USD --timezone=America/Chicago --use-rewrites=1 \
--search-engine=elasticsearch7 --elasticsearch-host=es-host.example.com \
--elasticsearch-port=9200
none of the above set of commands really explain about elasticsearch connectivity with google elasticsearch or aws elasticsearch
thx sayantan |