[ https://issues.apache.org/jira/browse/HBASE-12984?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14313437#comment-14313437 ]
Hudson commented on HBASE-12984: -------------------------------- SUCCESS: Integrated in HBase-1.0 #723 (See [https://builds.apache.org/job/HBase-1.0/723/]) HBASE-12984: SSL cannot be used by the InfoPort in branch-1 (enis: rev 75d3334ce6e770bf2b2df7b17fbff7eba42c08c7) * hbase-server/src/test/java/org/apache/hadoop/hbase/TestHBaseTestingUtility.java * hbase-server/src/main/java/org/apache/hadoop/hbase/http/InfoServer.java * hbase-server/src/main/java/org/apache/hadoop/hbase/http/HttpConfig.java > SSL cannot be used by the InfoPort after removing deprecated code in > HBASE-10336 > -------------------------------------------------------------------------------- > > Key: HBASE-12984 > URL: https://issues.apache.org/jira/browse/HBASE-12984 > Project: HBase > Issue Type: Bug > Affects Versions: 1.0.0, 2.0.0, 1.1.0 > Reporter: Esteban Gutierrez > Assignee: Esteban Gutierrez > Priority: Blocker > Fix For: 1.0.0, 2.0.0, 1.1.0 > > Attachments: HBASE-12984-v1.txt, HBASE-12984-v3.txt, > HBASE-12984-v3.txt, HBASE-12984-v4.txt > > > Setting {{hbase.ssl.enabled}} to {{true}} doesn't enable SSL on the > InfoServer. Found that the problem is down the InfoServer and HttpConfig in > how we setup the protocol in the HttpServer: > {code} > for (URI ep : endpoints) { > Connector listener = null; > String scheme = ep.getScheme(); > if ("http".equals(scheme)) { > listener = HttpServer.createDefaultChannelConnector(); > } else if ("https".equals(scheme)) { > SslSocketConnector c = new SslSocketConnectorSecure(); > c.setNeedClientAuth(needsClientAuth); > c.setKeyPassword(keyPassword); > {code} > It depends what end points have been added by the InfoServer: > {code} > builder > .setName(name) > .addEndpoint(URI.create("http://" + bindAddress + ":" + port)) > .setAppDir(HBASE_APP_DIR).setFindPort(findPort).setConf(c); > {code} > Basically we always use http and we don't look via HttConfig if > {{hbase.ssl.enabled}} was set to true and we assign the right schema based on > the configuration. -- This message was sent by Atlassian JIRA (v6.3.4#6332)