Return-Path: Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: (qmail 73973 invoked from network); 12 Oct 2010 15:55:54 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 12 Oct 2010 15:55:54 -0000 Received: (qmail 98363 invoked by uid 500); 12 Oct 2010 15:55:54 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 98342 invoked by uid 500); 12 Oct 2010 15:55:54 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 98334 invoked by uid 99); 12 Oct 2010 15:55:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Oct 2010 15:55:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Oct 2010 15:55:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BB15823889BB; Tue, 12 Oct 2010 15:55:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1021809 - /cassandra/trunk/conf/cassandra.yaml Date: Tue, 12 Oct 2010 15:55:30 -0000 To: commits@cassandra.apache.org From: jbellis@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101012155530.BB15823889BB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jbellis Date: Tue Oct 12 15:55:30 2010 New Revision: 1021809 URL: http://svn.apache.org/viewvc?rev=1021809&view=rev Log: update listen_address, rpc_address comments Modified: cassandra/trunk/conf/cassandra.yaml Modified: cassandra/trunk/conf/cassandra.yaml URL: http://svn.apache.org/viewvc/cassandra/trunk/conf/cassandra.yaml?rev=1021809&r1=1021808&r2=1021809&view=diff ============================================================================== --- cassandra/trunk/conf/cassandra.yaml (original) +++ cassandra/trunk/conf/cassandra.yaml Tue Oct 12 15:55:30 2010 @@ -112,13 +112,26 @@ sliced_buffer_size_in_kb: 64 # TCP port, for commands and data storage_port: 7000 -# Address to bind to and tell other nodes to connect to. You _must_ -# change this if you want multiple nodes to be able to communicate! +# Address to bind to and tell other Cassandra nodes to connect to. You +# _must_ change this if you want multiple nodes to be able to +# communicate! +# +# Leaving it blank leaves it up to InetAddress.getLocalHost(). This +# will always do the Right Thing *if* the node is properly configured +# (hostname, name resolution, etc), and the Right Thing is to use the +# address associated with the hostname (it might not be). +# +# Setting this to 0.0.0.0 is always wrong. listen_address: localhost -# The address to bind the Thrift RPC service to +# The address to bind the Thrift RPC service to -- clients connect +# here. Unlike ListenAddress above, you *can* specify 0.0.0.0 here if +# you want Thrift to listen on all interfaces. +# +# Leaving this blank has the same effect it does for ListenAddress, +# (i.e. it will be based on the configured hostname of the node). rpc_address: localhost -# port for Thrift to listen on +# port for Thrift to listen for clients on rpc_port: 9160 # enable or disable keepalive on rpc connections