- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2021
10:58 AM
06-01-2021
10:58 AM
magento2 cloud installation guide with AWS Elasticsearch?
hi
can anyone share the magento2 cloud installation guide with AWS Elasticsearch or?
thanks
sayantan
Labels:
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2021
11:35 AM
06-02-2021
11:35 AM
Re: magento2 cloud installation guide with AWS Elasticsearch?
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
Was my answer helpful? You can accept it as a solution.
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2021
02:02 PM
06-14-2021
02:02 PM
Re: magento2 cloud installation guide with AWS Elasticsearch?
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2021
05:58 PM
07-05-2021
05:58 PM
Re: magento2 cloud installation guide with AWS Elasticsearch?
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 |