Re: Setting up a multi-node cluster

2013-08-29 Thread Dinesh
My first node is running and second node is not running in this case I tried telnet from second node to first node. Following is the stdout # telnet 10.96.10.207 7000 Trying 10.96.10.207... Connected to 10.96.10.207. Escape character is '^]'. quit Connection closed by foreign host. I see the

Re: Setting up a multi-node cluster

2013-08-29 Thread Andrew Cobley
Have you tried setting rpc_address to the same as listen_address ? Andy On 29 Aug 2013, at 07:47, Dinesh dinesh.gad...@gmail.commailto:dinesh.gad...@gmail.com wrote: My first node is running and second node is not running in this case I tried telnet from second node to first node. Following

Re: Setting up a multi-node cluster

2013-08-29 Thread Dinesh
Facing the same issue with rpc_address set to the same as listen address on both nodes Checked with having in first node - rpc_address: 10.96.10.207 in second node - rpc_address: 10.96.10.223 On Thu, Aug 29, 2013 at 12:40 PM, Andrew Cobley a.e.cob...@dundee.ac.ukwrote: Have you tried

Re: Setting up a multi-node cluster

2013-08-29 Thread Dinesh
I enabled the debug level for logging. following is the debug entry for the same exception from node2. Someone please help me DEBUG 14:53:58,372 Connection version 6 from /10.96.10.105 DEBUG 14:53:58,374 Upgrading incoming connection to be compressed DEBUG 14:53:58,378 Max version for

Re: Setting up a multi-node cluster

2013-08-28 Thread John Pyeatt
Have you verified that your firewall is configured for the cassandra traffic. At the very least you need to make certain the following ports are open between nodes: 7000, 7001, 7199, 9160, 61620 and 61621. On Wed, Aug 28, 2013 at 12:36 AM, Dinesh dinesh.gad...@gmail.com wrote: In my case

Re: Setting up a multi-node cluster

2013-08-28 Thread Dinesh
Hi John, I had my firewall disabled in both the nodes To make sure. I checked it # rcSuSEfirewall2 status Checking the status of SuSEfirewall2 unused if it's, on it says running Please suggest the further steps, where to look and

Re: Setting up a multi-node cluster

2013-08-28 Thread Andrey Ilinykh
To be sure ports are open try to connect from one node to another: telnet node ip 7000 try all ports. Andrey On Wed, Aug 28, 2013 at 10:41 PM, Dinesh dinesh.gad...@gmail.com wrote: Hi John, I had my firewall disabled in both the nodes To make sure. I checked it # rcSuSEfirewall2 status

Setting up a multi-node cluster

2013-08-27 Thread Dinesh
Hi, I am trying to setup a two node Cassandra cluster Able to start the first node, but not seeing the following exception while starting the second node ERROR 17:31:34,315 Exception encountered during startup java.lang.IllegalStateException: Unable to contact any seeds! at

Re: Setting up a multi-node cluster

2013-08-27 Thread Naresh Yadav
You would need to configure rpc_address also with hostname/ips on both the nodes. Naresh On Wed, Aug 28, 2013 at 10:15 AM, Dinesh dinesh.gad...@gmail.com wrote: Hi, I am trying to setup a two node Cassandra cluster Able to start the first node, but not seeing the following exception while

Re: Setting up a multi-node cluster

2013-08-27 Thread Dinesh
In my case rpc_address in both the nodes is set to 0.0.0.0 which means it listens on all interfaces. it has a larger scope (to listen on all localhost, ipv4, hostnames, ipv6 addresses) than providing just the hostname/ipv4 addresses anyway I initially checked that, but it's the same exception I