Has anyone tried / planning to try deploying ElasticSearch / Solr on the new AWS Elastic Beanstalk service?

Solr has some info on deploying under Tomcat (which is part of Elastic Beanstalk), couldn't find anything similar for Elastic Search.

Extra credits if you can deploy it using the free tier :)

link|improve this question
Same question here. In the solr Tomcat configuration, we have to provide a context to the solr.war file docbase and also set an environment variable pointing to the solr/home directory. Not sure how this would be done with a single repackaged .war file. – josefresno Jan 19 '11 at 21:11
feedback

3 Answers

up vote 5 down vote accepted

I am new to AWS Elastic Beanstalk but it seems to be designed for WAR applications deployment. ElasticSearch does not require web container and is not packaged as a WAR application, it is standalone java app and has its own layer for dealing with network communication. You can check cloud docs about how ElasticSearch support AWS.

link|improve this answer
feedback

You can easily deploy Elasticsearch on Amazon EC2 using Apache Whirr. Check the recipes folder for a demo configuration file. Disclaimer: I'm one of the committers.

link|improve this answer
feedback

ES can be directly run on EC2 without any webserver. Copy ES binary to an EC2 instance, log in to the instance with a terminal and you can run ES from command line using the supplied script

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.