aboutsummaryrefslogtreecommitdiff
path: root/ec2
diff options
context:
space:
mode:
authorShivaram Venkataraman <shivaram@eecs.berkeley.edu>2013-02-18 16:56:01 -0800
committerShivaram Venkataraman <shivaram@eecs.berkeley.edu>2013-02-18 16:56:01 -0800
commit03f45a18d57ea1eceeb688154c01a1d460744600 (patch)
treea75772b3cc2535c04bd24fb69fcfbd9550761fa8 /ec2
parent7151e1e4c8f4f764c54047ef82b988f887a0b9c7 (diff)
downloadspark-03f45a18d57ea1eceeb688154c01a1d460744600.tar.gz
spark-03f45a18d57ea1eceeb688154c01a1d460744600.tar.bz2
spark-03f45a18d57ea1eceeb688154c01a1d460744600.zip
Use port 5080 for httpd/ganglia
Diffstat (limited to 'ec2')
-rwxr-xr-xec2/spark_ec2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ec2/spark_ec2.py b/ec2/spark_ec2.py
index 7967bcac50..89cfbad876 100755
--- a/ec2/spark_ec2.py
+++ b/ec2/spark_ec2.py
@@ -179,7 +179,7 @@ def launch_cluster(conn, opts, cluster_name):
if opts.cluster_type == "mesos":
master_group.authorize('tcp', 38090, 38090, '0.0.0.0/0')
if opts.ganglia:
- master_group.authorize('tcp', 80, 80, '0.0.0.0/0')
+ master_group.authorize('tcp', 5080, 5080, '0.0.0.0/0')
if slave_group.rules == []: # Group was just now created
slave_group.authorize(src_group=master_group)
slave_group.authorize(src_group=slave_group)