[ 
https://issues.apache.org/jira/browse/AMBARI-20049?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15870211#comment-15870211
 ] 

Hudson commented on AMBARI-20049:
---------------------------------

FAILURE: Integrated in Jenkins build Ambari-branch-2.5 #1016 (See 
[https://builds.apache.org/job/Ambari-branch-2.5/1016/])
AMBARI-20049. One way SSL fallback logic can cause some agents to be (aonishuk: 
[http://git-wip-us.apache.org/repos/asf?p=ambari.git&a=commit&h=4379aea0b947bca6e9a0de0927335139892aaec9])
* (edit) ambari-agent/src/main/python/ambari_agent/security.py
* (edit) ambari-agent/src/test/python/ambari_agent/TestSecurity.py


> One way SSL fallback logic can cause some agents to be connected with 2-way 
> SSL
> -------------------------------------------------------------------------------
>
>                 Key: AMBARI-20049
>                 URL: https://issues.apache.org/jira/browse/AMBARI-20049
>             Project: Ambari
>          Issue Type: Bug
>            Reporter: Andrew Onischuk
>            Assignee: Andrew Onischuk
>             Fix For: 2.5.0
>
>         Attachments: AMBARI-20049.patch
>
>
> We have fallback logic since a long time in the agent to try to connect to the
> server with 2-way SSL if one-way SSL throws an exception. This can cause some
> agents to connect with 2-way SSL (connection timeout exception for one-way
> SSL) and thereby a cluster having a mix of agents, some connected with one-way
> SSL and some connected with 2-way SSL.
> Investigate why we have had this logic and if it is no longer appropriate,
> remove this fallback logic.
> <https://github.com/apache/ambari/blob/trunk/ambari-
> agent/src/main/python/ambari_agent/security.py#L57-L67>
>     
>     
>     
>         if not self.two_way_ssl_required:
>           try:
>             sock = self.create_connection()
>             self.sock = ssl.wrap_socket(sock, cert_reqs=ssl.CERT_NONE)
>             logger.info('SSL connection established. Two-way SSL 
> authentication is '
>                         'turned off on the server.')
>           except (ssl.SSLError, AttributeError):
>             self.two_way_ssl_required = True
>             logger.info(
>               'Insecure connection to https://' + self.host + ':' + self.port 
> +
>               '/ failed. Reconnecting using two-way SSL authentication..')
>     



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to