Re: Cluster Configuration Issues

2009-10-23 Thread Patrick Hunt
: Henry Robinson [mailto:he...@cloudera.com] Sent: Thursday, October 22, 2009 6:01 PM To: zookeeper-user@hadoop.apache.org Subject: Re: Cluster Configuration Issues yeah - thought this was it: you've missed the forward slash on home/mark/zookeeper (this turned up on your exception message). On Thu

Re: Cluster Configuration Issues

2009-10-23 Thread Patrick Hunt
: Patrick Hunt; zookeeper-user@hadoop.apache.org Subject: Re: Cluster Configuration Issues Usually this indicates that either a firewall is blocking one or more of the ports, or the server isn't started on all the hosts. First verify connectivity, I usually use telnet, see detail here: https

Re: Cluster Configuration Issues

2009-10-22 Thread Patrick Hunt
of zookeeper nodes but I just want to make sure it works first). Any suggestions? -Mark -Original Message- From: Mark Vigeant [mailto:mark.vige...@riskmetrics.com] Sent: Wednesday, October 21, 2009 9:43 AM To: zookeeper-user@hadoop.apache.org Subject: RE: Cluster Configuration Issues Thank you

Re: Cluster Configuration Issues

2009-10-22 Thread Ted Dunning
Try Patrick's utility for creating the config files and compare the result to your hand-made files. On Thu, Oct 22, 2009 at 1:04 PM, Mark Vigeant mark.vige...@riskmetrics.comwrote: The file contains the number 1 and nothing else. My other node has the number 2 (I only have 2 machines right

Re: Cluster Configuration Issues

2009-10-22 Thread Patrick Hunt
, I've been using zookeeper 3.2.1 -Original Message- From: Ted Dunning [mailto:ted.dunn...@gmail.com] Sent: Thursday, October 22, 2009 4:33 PM To: zookeeper-user@hadoop.apache.org Subject: Re: Cluster Configuration Issues Try Patrick's utility for creating the config files and compare

RE: Cluster Configuration Issues

2009-10-22 Thread Mark Vigeant
I've put myid files in /home/mark/zookeeper with the numbers 1 and 2 respectively -Original Message- From: Henry Robinson [mailto:he...@cloudera.com] Sent: Thursday, October 22, 2009 5:43 PM To: zookeeper-user@hadoop.apache.org Subject: Re: Cluster Configuration Issues Hi Mark - The Python

Re: Cluster Configuration Issues

2009-10-22 Thread Henry Robinson
respectively -Original Message- From: Henry Robinson [mailto:he...@cloudera.com] Sent: Thursday, October 22, 2009 5:43 PM To: zookeeper-user@hadoop.apache.org Subject: Re: Cluster Configuration Issues Hi Mark - The Python error relates to not being able to find the zoocfg module

RE: Cluster Configuration Issues

2009-10-21 Thread Mark Vigeant
] Sent: Tuesday, October 20, 2009 1:55 PM To: zookeeper-user@hadoop.apache.org Subject: Re: Cluster Configuration Issues You might try my ZooKeeper configuration generator if you have python handy: http://bit.ly/mBEcF The main issue that I see with your config is that each config file needs

Re: Cluster Configuration Issues

2009-10-20 Thread Henry Robinson
Hi Mark - You should create the myid file yourself, as you have done. What errors are you seeing that lead you to think the id is not being read correctly? cheers, Henry On Tue, Oct 20, 2009 at 10:12 AM, Mark Vigeant mark.vige...@riskmetrics.com wrote: Hey- So I'm trying to run hbase on 4

Re: Cluster Configuration Issues

2009-10-20 Thread Mahadev Konar
HI Mark, ZooKeeper does not create the myid file in the data directory. Looking at the config file it looks like it is missing the quorum configuration for other servers. Please take alook at http://hadoop.apache.org/zookeeper/docs/r3.2.1/zookeeperAdmin.html#sc_zkMuli tServerSetup You will

Re: Cluster Configuration Issues

2009-10-20 Thread Patrick Hunt
You might try my ZooKeeper configuration generator if you have python handy: http://bit.ly/mBEcF The main issue that I see with your config is that each config file needs to contain a list of all the servers in the ensemble: ... syncLimit=2 server.1=host1... server.2=host2...