Repository: spark Updated Branches: refs/heads/master 5a4063645 -> 56e009d4f
[EC2] Add default history server port to ec2 script Right now I have to open it manually Author: Andrew Or <[email protected]> Closes #1296 from andrewor14/hist-serv-port and squashes the following commits: 8895a1f [Andrew Or] Add default history server port to ec2 script Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/56e009d4 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/56e009d4 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/56e009d4 Branch: refs/heads/master Commit: 56e009d4f05d990c60e109838fa70457f97f44aa Parents: 5a40636 Author: Andrew Or <[email protected]> Authored: Tue Jul 8 16:49:31 2014 +0900 Committer: Patrick Wendell <[email protected]> Committed: Tue Jul 8 16:49:31 2014 +0900 ---------------------------------------------------------------------- ec2/spark_ec2.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/56e009d4/ec2/spark_ec2.py ---------------------------------------------------------------------- diff --git a/ec2/spark_ec2.py b/ec2/spark_ec2.py index e22d93b..f5c2bfb 100755 --- a/ec2/spark_ec2.py +++ b/ec2/spark_ec2.py @@ -279,6 +279,7 @@ def launch_cluster(conn, opts, cluster_name): master_group.authorize(src_group=slave_group) master_group.authorize('tcp', 22, 22, '0.0.0.0/0') master_group.authorize('tcp', 8080, 8081, '0.0.0.0/0') + master_group.authorize('tcp', 18080, 18080, '0.0.0.0/0') master_group.authorize('tcp', 19999, 19999, '0.0.0.0/0') master_group.authorize('tcp', 50030, 50030, '0.0.0.0/0') master_group.authorize('tcp', 50070, 50070, '0.0.0.0/0')
