I was able to deploy and run 0.9.0-rc2 on EC2 using
https://github.com/nathanmarz/storm-deploy
After following the instructions from the wiki and updating the
configuration files, the following command worked for me :
*lein deploy-storm --start --name yourclustername --branch master
--commit 0.9.0-rc2*
I am using Leiningen 2.3.4
All the workers, master and zookkeeper servers were up and running in the
cluster
################################################################################
# CLUSTERS CONFIG FILE *under storm-deploy/conf*
################################################################################
nimbus.image: "us-west-2/ami-ca2ca4fa" #64-bit ubuntu
nimbus.hardware: "m1.xlarge"
supervisor.count: 5
supervisor.image: "us-west-2/ami-ca2ca4fa" #64-bit ubuntu on
us-west-2
supervisor.hardware: "m1.xlarge"
zookeeper.count: 1
zookeeper.image: "us-west-2/ami-ca2ca4fa" #64-bit ubuntu
zookeeper.hardware: "m1.large"
################################################################################
*config.clj under ~/.pallet *
################################################################################
(defpallet
:services
{
:default {
:blobstore-provider "aws-s3"
:provider "aws-ec2"
:environment {:user {:username "storm" ; this must be "storm"
:private-key-path
"/home/ubuntu/.ssh/id_rsa"
:public-key-path
"/home/ubuntu/.ssh/id_rsa.pub"}
:aws-user-id "XXXXXXXX}
:identity "XXXX"
:credential "XXXXXX"
:jclouds.regions "us-west-2"
}
})
----------------------------------------------------------------
-Sasi
On Wed, Mar 26, 2014 at 3:01 AM, Spico Florin <[email protected]> wrote:
> Hello!
> I would like to know what changes should be applied to the storm-deploy
> script (https://github.com/nathanmarz/storm-deploy) in order to install
> it on Amazon?
> Thank you in advance.
> Regards,
> Florin
>