I have a Datastax cluster cassandra (1.2) on EC2 with opCenter (3.0.1) with 2 nodes. I followed this guide : http://www.datastax.com/docs/1.2/install/install_ami
using this :
--clustername cass1 --totalnodes 2 --version community Using own security group with right opened ports (as guide said)
After that i can open opsCenter and fix the 2 nodes and everything is fine
Then i want to add a new node to the cluster (2 ways to do it)
1 - Via the opsCenter i have : "Install Errored: The installed agent doesn't seem to be responding"
Instance is running but...
2 - Via the guide : http://www.datastax.com/docs/1.2/install/expand_ami
I create another cluster with these parameters
--clustername tmp --totalnodes 1 --version community
(clustername different then the first cluster)
Then on instance :
sudo service cassandra stop
sudo rm -rf /var/lib/cassandra/*
sudo vi /etc/cassandra/cassandra.yaml
changing cluster name and seed ip
sudo service cassandra start
But when "nodetool status" Failed to connect to '127.0.0.1:7199': Connection refused
Where i'm wrong ? Trying and retrying and i cannot add a node
Thank you :-)