Hello,

Found some archive posts regarding "encrypt Hadoop socket connections"

https://issues.apache.org/jira/browse/HADOOP-2239

http://markmail.org/message/pmn23y4b3gdxcpif

Couldn't find any documentation or Junit tests.  Does anyone know the
proper configuration changes to make?

It seems like the following are needed in hadoop-site.xml?

https.keystore.info.rsrc  = should refernce an external config file, in
this example called sslinfo.xml ?

https.keystore.password  =  ?
https.keystore.keypassword  = ?

-------------------------------------------------------------------
Snippet from org.apache.hadoop.dfs.DataNode

  void startDataNode(Configuration conf, 
                     AbstractList<File> dataDirs
                     ) throws IOException {

   ...
   sslConf.addResource(conf.get("https.keystore.info.rsrc",
"sslinfo.xml"));
    String keyloc = sslConf.get("https.keystore.location");
    if (null != keyloc) {
      this.infoServer.addSslListener(secInfoSocAddr, keyloc,
          sslConf.get("https.keystore.password", ""),
          sslConf.get("https.keystore.keypassword", ""));
--------------------------------------------------------------
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

The information transmitted is intended only for the person or entity to 
which it is addressed and may contain confidential and/or privileged 
material. Any review, retransmission, dissemination or other use of, or 
taking of any action in reliance upon, this information by persons or 
entities other than the intended recipient is prohibited. If you received 
this message in error, please contact the sender and delete the material 
from any computer.


Reply via email to