You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by br...@apache.org on 2015/02/10 19:20:03 UTC

[1/6] cassandra git commit: Mention storage port should not be exposed, either

Repository: cassandra
Updated Branches:
  refs/heads/cassandra-2.0 ce8501b77 -> 28c380c96
  refs/heads/cassandra-2.1 69d07fb03 -> 88b226b11
  refs/heads/trunk 8f5435d06 -> 51057f4cf


Mention storage port should not be exposed, either


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/28c380c9
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/28c380c9
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/28c380c9

Branch: refs/heads/cassandra-2.0
Commit: 28c380c96a363eb1a2b43109ee40f8cf2ee681f3
Parents: ce8501b
Author: Brandon Williams <br...@apache.org>
Authored: Tue Feb 10 12:19:43 2015 -0600
Committer: Brandon Williams <br...@apache.org>
Committed: Tue Feb 10 12:19:43 2015 -0600

----------------------------------------------------------------------
 conf/cassandra.yaml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/28c380c9/conf/cassandra.yaml
----------------------------------------------------------------------
diff --git a/conf/cassandra.yaml b/conf/cassandra.yaml
index 99f13a6..163ae9e 100644
--- a/conf/cassandra.yaml
+++ b/conf/cassandra.yaml
@@ -287,10 +287,12 @@ trickle_fsync: false
 trickle_fsync_interval_in_kb: 10240
 
 # TCP port, for commands and data
+# For security reasons, you should not expose this port to the internet.  Firewall it if needed.
 storage_port: 7000
 
 # SSL port, for encrypted communication.  Unused unless enabled in
 # encryption_options
+# For security reasons, you should not expose this port to the internet.  Firewall it if needed.
 ssl_storage_port: 7001
 
 # Address to bind to and tell other Cassandra nodes to connect to. You


[5/6] cassandra git commit: Merge branch 'cassandra-2.0' into cassandra-2.1

Posted by br...@apache.org.
Merge branch 'cassandra-2.0' into cassandra-2.1


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/88b226b1
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/88b226b1
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/88b226b1

Branch: refs/heads/cassandra-2.1
Commit: 88b226b1186f2b94c0e3d4611defe4da7a60cc80
Parents: 69d07fb 28c380c
Author: Brandon Williams <br...@apache.org>
Authored: Tue Feb 10 12:19:51 2015 -0600
Committer: Brandon Williams <br...@apache.org>
Committed: Tue Feb 10 12:19:51 2015 -0600

----------------------------------------------------------------------
 conf/cassandra.yaml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/88b226b1/conf/cassandra.yaml
----------------------------------------------------------------------
diff --cc conf/cassandra.yaml
index f337067,163ae9e..094a196
--- a/conf/cassandra.yaml
+++ b/conf/cassandra.yaml
@@@ -354,14 -292,13 +355,15 @@@ storage_port: 700
  
  # SSL port, for encrypted communication.  Unused unless enabled in
  # encryption_options
+ # For security reasons, you should not expose this port to the internet.  Firewall it if needed.
  ssl_storage_port: 7001
  
 -# 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!
 -# 
 +# Address or interface 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!
 +#
 +# Set listen_address OR listen_interface, not both. Interfaces must correspond
 +# to a single address, IP aliasing is not supported.
 +#
  # 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


[2/6] cassandra git commit: Mention storage port should not be exposed, either

Posted by br...@apache.org.
Mention storage port should not be exposed, either


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/28c380c9
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/28c380c9
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/28c380c9

Branch: refs/heads/cassandra-2.1
Commit: 28c380c96a363eb1a2b43109ee40f8cf2ee681f3
Parents: ce8501b
Author: Brandon Williams <br...@apache.org>
Authored: Tue Feb 10 12:19:43 2015 -0600
Committer: Brandon Williams <br...@apache.org>
Committed: Tue Feb 10 12:19:43 2015 -0600

----------------------------------------------------------------------
 conf/cassandra.yaml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/28c380c9/conf/cassandra.yaml
----------------------------------------------------------------------
diff --git a/conf/cassandra.yaml b/conf/cassandra.yaml
index 99f13a6..163ae9e 100644
--- a/conf/cassandra.yaml
+++ b/conf/cassandra.yaml
@@ -287,10 +287,12 @@ trickle_fsync: false
 trickle_fsync_interval_in_kb: 10240
 
 # TCP port, for commands and data
+# For security reasons, you should not expose this port to the internet.  Firewall it if needed.
 storage_port: 7000
 
 # SSL port, for encrypted communication.  Unused unless enabled in
 # encryption_options
+# For security reasons, you should not expose this port to the internet.  Firewall it if needed.
 ssl_storage_port: 7001
 
 # Address to bind to and tell other Cassandra nodes to connect to. You


[6/6] cassandra git commit: Merge branch 'cassandra-2.1' into trunk

Posted by br...@apache.org.
Merge branch 'cassandra-2.1' into trunk


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/51057f4c
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/51057f4c
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/51057f4c

Branch: refs/heads/trunk
Commit: 51057f4cf7674363c5a65383315dadbe431c70fb
Parents: 8f5435d 88b226b
Author: Brandon Williams <br...@apache.org>
Authored: Tue Feb 10 12:19:58 2015 -0600
Committer: Brandon Williams <br...@apache.org>
Committed: Tue Feb 10 12:19:58 2015 -0600

----------------------------------------------------------------------
 conf/cassandra.yaml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/51057f4c/conf/cassandra.yaml
----------------------------------------------------------------------


[4/6] cassandra git commit: Merge branch 'cassandra-2.0' into cassandra-2.1

Posted by br...@apache.org.
Merge branch 'cassandra-2.0' into cassandra-2.1


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/88b226b1
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/88b226b1
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/88b226b1

Branch: refs/heads/trunk
Commit: 88b226b1186f2b94c0e3d4611defe4da7a60cc80
Parents: 69d07fb 28c380c
Author: Brandon Williams <br...@apache.org>
Authored: Tue Feb 10 12:19:51 2015 -0600
Committer: Brandon Williams <br...@apache.org>
Committed: Tue Feb 10 12:19:51 2015 -0600

----------------------------------------------------------------------
 conf/cassandra.yaml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/88b226b1/conf/cassandra.yaml
----------------------------------------------------------------------
diff --cc conf/cassandra.yaml
index f337067,163ae9e..094a196
--- a/conf/cassandra.yaml
+++ b/conf/cassandra.yaml
@@@ -354,14 -292,13 +355,15 @@@ storage_port: 700
  
  # SSL port, for encrypted communication.  Unused unless enabled in
  # encryption_options
+ # For security reasons, you should not expose this port to the internet.  Firewall it if needed.
  ssl_storage_port: 7001
  
 -# 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!
 -# 
 +# Address or interface 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!
 +#
 +# Set listen_address OR listen_interface, not both. Interfaces must correspond
 +# to a single address, IP aliasing is not supported.
 +#
  # 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


[3/6] cassandra git commit: Mention storage port should not be exposed, either

Posted by br...@apache.org.
Mention storage port should not be exposed, either


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/28c380c9
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/28c380c9
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/28c380c9

Branch: refs/heads/trunk
Commit: 28c380c96a363eb1a2b43109ee40f8cf2ee681f3
Parents: ce8501b
Author: Brandon Williams <br...@apache.org>
Authored: Tue Feb 10 12:19:43 2015 -0600
Committer: Brandon Williams <br...@apache.org>
Committed: Tue Feb 10 12:19:43 2015 -0600

----------------------------------------------------------------------
 conf/cassandra.yaml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/28c380c9/conf/cassandra.yaml
----------------------------------------------------------------------
diff --git a/conf/cassandra.yaml b/conf/cassandra.yaml
index 99f13a6..163ae9e 100644
--- a/conf/cassandra.yaml
+++ b/conf/cassandra.yaml
@@ -287,10 +287,12 @@ trickle_fsync: false
 trickle_fsync_interval_in_kb: 10240
 
 # TCP port, for commands and data
+# For security reasons, you should not expose this port to the internet.  Firewall it if needed.
 storage_port: 7000
 
 # SSL port, for encrypted communication.  Unused unless enabled in
 # encryption_options
+# For security reasons, you should not expose this port to the internet.  Firewall it if needed.
 ssl_storage_port: 7001
 
 # Address to bind to and tell other Cassandra nodes to connect to. You