Return-Path: Delivered-To: apmail-hadoop-chukwa-user-archive@minotaur.apache.org Received: (qmail 18021 invoked from network); 4 Mar 2010 12:41:15 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 4 Mar 2010 12:41:15 -0000 Received: (qmail 54509 invoked by uid 500); 4 Mar 2010 12:41:04 -0000 Delivered-To: apmail-hadoop-chukwa-user-archive@hadoop.apache.org Received: (qmail 54469 invoked by uid 500); 4 Mar 2010 12:41:04 -0000 Mailing-List: contact chukwa-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: chukwa-user@hadoop.apache.org Delivered-To: mailing list chukwa-user@hadoop.apache.org Received: (qmail 54296 invoked by uid 99); 4 Mar 2010 12:41:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Mar 2010 12:41:04 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of bisho@tuenti.com designates 95.131.168.251 as permitted sender) Received: from [95.131.168.251] (HELO calipso.tuenti.com) (95.131.168.251) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Mar 2010 12:40:57 +0000 Received: from localhost (localhost [127.0.0.1]) by calipso.tuenti.com ((8.14.2/8.14.2)) with ESMTP id BC7B019512BB for ; Thu, 4 Mar 2010 13:40:36 +0100 (CET) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.159]) by calipso.tuenti.com ((8.14.2/8.14.2)) with ESMTP id 47F531801B80 for ; Thu, 4 Mar 2010 13:40:36 +0100 (CET) Received: by fg-out-1718.google.com with SMTP id e21so587068fga.11 for ; Thu, 04 Mar 2010 04:40:35 -0800 (PST) MIME-Version: 1.0 Received: by 10.87.47.3 with SMTP id z3mr232933fgj.70.1267706435728; Thu, 04 Mar 2010 04:40:35 -0800 (PST) From: =?UTF-8?Q?Guillermo_P=C3=A9rez?= Date: Thu, 4 Mar 2010 13:40:15 +0100 Message-ID: <9d1281711003040440s327e246cs2ebc39fc12015ef1@mail.gmail.com> Subject: Problems with start-* scripts in trunk To: chukwa-user@hadoop.apache.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org The start-* script contain: "$bin"/chukwa-daemons.sh --config $CHUKWA_CONF_DIR --hosts agents start chukwa agent But the chukwa-daemons.sh already calls to chukwa. We should specify only the command (like "agent") after "start": "$bin"/chukwa-daemons.sh --config $CHUKWA_CONF_DIR --hosts agents start age= nt If you don't remove the chukwa, you get an error, the command doesn't match any of the checks in the chukwa script, so no classname is chosen. Another minor detail, bin/start-data-processors.sh tries to start dataloader, that is not supported anymore (or at least there is no class for it in the chukwa script). $ svn diff bin/ Index: bin/start-agents.sh =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- bin/start-agents.sh (revision 918900) +++ bin/start-agents.sh (working copy) @@ -28,4 +28,4 @@ . "$bin"/chukwa-config.sh # start chukwa agents -"$bin"/chukwa-daemons.sh --config $CHUKWA_CONF_DIR --hosts agents start chukwa agent +"$bin"/chukwa-daemons.sh --config $CHUKWA_CONF_DIR --hosts agents start ag= ent Index: bin/start-collectors.sh =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- bin/start-collectors.sh (revision 918900) +++ bin/start-collectors.sh (working copy) @@ -28,4 +28,4 @@ . "$bin"/chukwa-config.sh # start jetty collectors -"$bin"/chukwa-daemons.sh --config $CHUKWA_CONF_DIR --hosts collectors start "$bin"/chukwa collector +"$bin"/chukwa-daemons.sh --config $CHUKWA_CONF_DIR --hosts collectors start collector Index: bin/start-data-processors.sh =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- bin/start-data-processors.sh (revision 918900) +++ bin/start-data-processors.sh (working copy) @@ -22,6 +22,6 @@ . "$bin"/chukwa-config.sh # start data processors -"$bin"/chukwa-daemon.sh --config $CHUKWA_CONF_DIR start chukwa archive -"$bin"/chukwa-daemon.sh --config $CHUKWA_CONF_DIR start chukwa demux -"$bin"/chukwa-daemon.sh --config $CHUKWA_CONF_DIR start chukwa dataloader +"$bin"/chukwa-daemon.sh --config $CHUKWA_CONF_DIR start archive +"$bin"/chukwa-daemon.sh --config $CHUKWA_CONF_DIR start demux +#"$bin"/chukwa-daemon.sh --config $CHUKWA_CONF_DIR start dataloader --=20 Guille -=E2=84=AC=E1=B8=AD=E1=B9=A9=E1=B8=A9=C3=B8- :wq