Return-Path: X-Original-To: apmail-accumulo-user-archive@www.apache.org Delivered-To: apmail-accumulo-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B75E210E69 for ; Thu, 11 Jul 2013 20:22:02 +0000 (UTC) Received: (qmail 95512 invoked by uid 500); 11 Jul 2013 20:22:02 -0000 Delivered-To: apmail-accumulo-user-archive@accumulo.apache.org Received: (qmail 95469 invoked by uid 500); 11 Jul 2013 20:22:02 -0000 Mailing-List: contact user-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@accumulo.apache.org Delivered-To: mailing list user@accumulo.apache.org Received: (qmail 95461 invoked by uid 99); 11 Jul 2013 20:22:02 -0000 Received: from minotaur.apache.org (HELO minotaur.apache.org) (140.211.11.9) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Jul 2013 20:22:02 +0000 Received: from localhost (HELO mail-la0-f43.google.com) (127.0.0.1) (smtp-auth username ctubbsii, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Jul 2013 20:22:02 +0000 Received: by mail-la0-f43.google.com with SMTP id gw10so7161741lab.16 for ; Thu, 11 Jul 2013 13:22:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=EN1kU6PAN4Thi04V5cOKvU3DA2ZsewGvYBtJyv/3OTc=; b=oWLnpGHLiXphotKhu5IEEKOQK7/Lrx6qkjlgUm9p+KtDoWJDxE7GcqGEm0f/tsh5ox aN1FZr0tw7wZYpziWJcjhmcT22IVGM8YYq5Lg+cm0bbg8LL87FuWJGXu1bo9fsJv9JoS g5T1xo8A9hxkwqozBmwo/RWbGG2rlN1VgI5z0wM1EKON1fJQKScKLUfW7VRV71cbMdyC PLN2noBlo8YjSoem73AOpmZS5h+jsZ3l/gBF4fVJIMTE5gA0XgkehScNdUvg63ShbcrI u6fUseDffbZFzZAa0Bl6VS+688C68HnWKbA5Al4gPX4bRToxdpdWrZSgTP4ORBWoMy9u hXng== MIME-Version: 1.0 X-Received: by 10.112.169.5 with SMTP id aa5mr17826410lbc.71.1373574120082; Thu, 11 Jul 2013 13:22:00 -0700 (PDT) Received: by 10.114.181.37 with HTTP; Thu, 11 Jul 2013 13:22:00 -0700 (PDT) In-Reply-To: References: Date: Thu, 11 Jul 2013 16:22:00 -0400 Message-ID: Subject: Re: List of Ports used From: Christopher To: Accumulo User List Content-Type: text/plain; charset=ISO-8859-1 50091 is for the monitor to poll the Accumulo garbage collector's information, I believe. Also, just one tweak to the one-liner above, because you can filter the output of config: $ACCUMULO_HOME/bin/accumulo shell -u username -e "config -np -f port" should filter on ports. -- Christopher L Tubbs II http://gravatar.com/ctubbsii On Wed, Jul 10, 2013 at 8:13 AM, Michael Wall wrote: > To see what ports are currently in use on a cluster, look for port > entries and overrides in the "config" command in the shell. Something > like > > $ACCUMULO_HOME/bin/accumulo shell -u username -e "config -np" > > There is also the "Networking and Security" section under > http://www.accumulodata.com/ec2.html#config which shows > > 2181 Zookeeper > 2888 Zookeeper > 3888 Zookeeper > 4560 Accumulo monitor > 9000 HDFS > 9001 JobTracker > 9997 Tablet Server > 9999 Master Server > 11224 Accumulo Logger > 12234 Accumulo Tracer > 50010 DataNode Data > 50020 DataNode Metadata > 50060 TaskTrackers > 50070 NameNode HTTP monitor > 50075 DataNode HTTP monitor > 50091 ? > 50095 Accumulo HTTP monitor > > 50091 appears to be for the the garbage collector > > Mike > > On Mon, Jul 8, 2013 at 4:06 PM, Christopher wrote: >> I believe all Accumulo's ports are configurable, so you could look in >> docs/config.html, and look for "port". This will give you the best >> information available for the version you are using, regarding >> Accumulo's ports. >> >> For 1.5, the default ports are: >> >> master.port.client = 9999 >> tserver.port.client = 9997 >> gc.port.client = 50091 >> monitor.port.client = 50095 >> monitor.port.log4j = 4560 >> trace.port.client = 12234 >> >> You should also consider the behavior of searching for an open port >> (tserver.port.search; off by default), zookeeper, and HDFS. >> >> -- >> Christopher L Tubbs II >> http://gravatar.com/ctubbsii >> >> >> On Mon, Jul 8, 2013 at 3:51 PM, Aaron wrote: >>> Is there a list of ports that are used? From everything from >>> intra-TabletServer? Logger? Tracer? etc >>> >>> Cheers, >>> Aaron