When trying to launch a Developer PoP using section up
command with the section.io CLI, you might get this error:
"unknown ssl method" TLSv1_2
What should I do?
When trying to launch a Developer PoP using section up
command with the section.io CLI, you might get this error:
"unknown ssl method" TLSv1_2
What should I do?
This is probably caused by using Ruby 2.0.0. There seems to be limited compatibility with TLS 1.2. section.io has tightened the TLS versions to keep in line with PCI compliance and other good security practices.
if you run ruby -ropenssl -e 'puts OpenSSL::SSL::SSLContext::METHODS'
in a terminal, you’ll probably notice that TLSv1_2
is missing from the list. Thanks Ruby TLS 1.2 Problems.
Upgrading Ruby should fix this problem.
I encountered this when I was having my setup.
For MAC: ( Cause I was using Mac )
Hope this helps!