Skip to content

Commit f551b4d

Browse files
author
Yoichi Kawasaki
committed
add issue and its resolution
1 parent afaa264 commit f551b4d

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

Issues.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Installation failure: No Python.h error message
44

55
Issue overview is
6-
* OS: Ubuntu 14.04.4 LTS (Bash on windows)
6+
* OS: Ubuntu 14.04.4 LTS
77
* Issue Type: Installation failure
88

99
Get the following error message, then azuresshconfig installtion fail
@@ -18,5 +18,25 @@ sudo pip install azhresshconfig
1818
```
1919

2020

21+
## Execution failure: SNIMissingWarning and InsecurePlatformWarning error message
22+
23+
Issue overview is
24+
* OS: Ubuntu 14.04.4 LTS
25+
* Issue Type: Execution failure
26+
27+
Get the following error message while azuresshconfig executing
28+
```
29+
/usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/util/ssl_.py:318: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#snimissingwarning.
30+
SNIMissingWarning
31+
32+
/usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/util/ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#insecureplatformwarning.
33+
InsecurePlatformWarning
34+
```
35+
36+
A resolution is to install pyOpenSSL ndg-httpsclient pyasn1 package
37+
```
38+
pip install pyOpenSSL ndg-httpsclient pyasn1
39+
```
40+
See also Stackoverflow:[SSL InsecurePlatform error when using Requests package](http://stackoverflow.com/questions/29099404/ssl-insecureplatform-error-when-using-requests-package)
2141

2242

0 commit comments

Comments
 (0)