Return-Path: X-Original-To: apmail-cassandra-user-archive@www.apache.org Delivered-To: apmail-cassandra-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 E0AC9104B2 for ; Wed, 26 Aug 2015 14:32:15 +0000 (UTC) Received: (qmail 12871 invoked by uid 500); 26 Aug 2015 14:32:13 -0000 Delivered-To: apmail-cassandra-user-archive@cassandra.apache.org Received: (qmail 12847 invoked by uid 500); 26 Aug 2015 14:32:13 -0000 Mailing-List: contact user-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@cassandra.apache.org Delivered-To: mailing list user@cassandra.apache.org Received: (qmail 12837 invoked by uid 99); 26 Aug 2015 14:32:12 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2015 14:32:12 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 89487C028F for ; Wed, 26 Aug 2015 14:32:12 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.001 X-Spam-Level: X-Spam-Status: No, score=0.001 tagged_above=-999 required=6.31 tests=[URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id 3-u9zQC51Joy for ; Wed, 26 Aug 2015 14:32:03 +0000 (UTC) Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTPS id 81BBD506DD for ; Wed, 26 Aug 2015 14:32:03 +0000 (UTC) Received: by wicne3 with SMTP id ne3so46843640wic.0 for ; Wed, 26 Aug 2015 07:32:02 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=WeFkvle5eQoWpsMtL10TwfIINDoy1WOzewNiXX2q9Js=; b=iMuBZV1ONqhGxqSVNCsgxyB/aiWvp8/t7s369T52i4f2aLHEo3ixJwqzDNufngisUv i18X772sPCB7vUs0QVuoupqLEilwtd4+fabR114hoi1sJZyeZoRXl7gIxpRDsWEsf414 sw9GC7+7M+28dfbgAi3a+s/NuzU94DRwxezB1yDu7gGMV7JdcVeP+nQF/vyAz1I6c2Be 8DGCHfgOqG/VEJ33eGLMlU0pMkwu6hXGrBcu9/3Y9z0DkVc4n6h7sS7WZXnuN1SKdyE3 JvNhykOMGTFFju3ilHhVroWwQSpbJObT07Bg4/u2bU3FPO90zU/20yaJc/COqHfuQXo/ Mr5w== X-Gm-Message-State: ALoCoQn72jyxHcJf7eP48gVjaGrv3vUaIcIDCj9c0euwpb7/R8TiNx1SKoqWq5sxD21XcbAv+Czs MIME-Version: 1.0 X-Received: by 10.180.211.11 with SMTP id my11mr12337145wic.51.1440599522620; Wed, 26 Aug 2015 07:32:02 -0700 (PDT) Received: by 10.28.228.138 with HTTP; Wed, 26 Aug 2015 07:32:02 -0700 (PDT) In-Reply-To: <55DCD191.6020306@pbandjelly.org> References: <55DCD191.6020306@pbandjelly.org> Date: Wed, 26 Aug 2015 10:32:02 -0400 Message-ID: Subject: Re: 'no such object in table' From: Jason Lewis To: user@cassandra.apache.org Content-Type: text/plain; charset=UTF-8 All of my nodes have the same cassandra-env.sh. Only a few of them complain. LOCAL_JMX=no if [ "$LOCAL_JMX" = "yes" ]; then JVM_OPTS="$JVM_OPTS -Dcassandra.jmx.local.port=$JMX_PORT -XX:+DisableExplicitGC" else JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.port=$JMX_PORT" JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.rmi.port=$JMX_PORT" JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.ssl=false" JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.authenticate=false" JVM_OPTS="$JVM_OPTS -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password" fi On Tue, Aug 25, 2015 at 4:35 PM, Michael Shuler wrote: > On 08/25/2015 02:19 PM, Jason Lewis wrote: >> >> I'm trying to run nodetool from one node, connecting to another. I >> can successfully connect to the majority of nodes in my ring, but two >> nodes throw the following error. >> >> nodetool: Failed to connect to ':7199' NoSuchObjectException: 'no >> such object in table'. >> >> Any idea why this is happening? Misconfiguration? > > > Possibly. Check those nodes to see if 7199 is listening to only localhost or > some private IP your client node cannot reach (failed to connect). The > default is to only listen on localhost, as seen on my machine: > > $ netstat -ln | grep 7199 > tcp 0 0 127.0.0.1:7199 0.0.0.0:* LISTEN > > JMX configuration is set in conf/cassandra-env.sh - please, configure JMX > security as documented in that file and/or firewall JMX. Check all your > nodes JMX security configs! :) > > -- > Kind regards, > Michael >