OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv2/v3 read server helloSSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failedSSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed ONLY WHEN PROXYINGSSL validation failure connecting to hostOpenSSL::SSL::SSLError: SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello AOpenSSL::SSL::SSLError: SSL_connect SYSCALL returned=5 errno=0 state=SSLv3 read server hello AActivemerchant SSL_connect returned=1 errno=0 state=SSLv3SSL_connect SYSCALL returned=5 errno=0 state=SSLv3 read server hello A (OpenSSL::SSL::SSLError)OpenSSL::SSL::SSLError (SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed) while connecting to PaypalHow to fix (OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed) in Win7-64How to Parse uri in ruby without Authentication

What is realistic quality of computer blueprints quickly backed up before apocalypse and their impact on future design?

What is the reason behind water not falling from a bucket at the top of loop?

How were x-ray diffraction patterns deciphered before computers?

Adding a (stair/baby) gate without facing walls

How to get maximum number that newcount can hold?

The grades of the students in a class

Why does the U.S (and other Republics) not have separate capital cities for each branch of government?

Feedback diagram

Pre-Greek θάλασσα "thalassa" and Turkish talaz

How to draw twisted cuves?

Map vs. Table for index-specific operations on 2D arrays

Python π = 1 + (1/2) + (1/3) + (1/4) - (1/5) + (1/6) + (1/7) + (1/8) + (1/9) - (1/10) ...1748 Euler

Is Illustrator accurate for business card sizes?

Overprovisioning SSD on ubuntu. How? Ubuntu 19.04 Samsung SSD 860

Define tcolorbox in math mode

Were there any unmanned expeditions to the moon that returned to Earth prior to Apollo?

How long should I wait to plug in my refrigerator after unplugging it?

What's the proper way of indicating that a car has reached its destination during a dialogue?

Word for pulling a punch in karate

Difference between Chance constraints and logical constraints

How do discovery writers hibernate?

What do the screens say after you are set free?

A conjectural trigonometric identity

Reasons for using monsters as bioweapons



OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv2/v3 read server hello


SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failedSSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed ONLY WHEN PROXYINGSSL validation failure connecting to hostOpenSSL::SSL::SSLError: SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello AOpenSSL::SSL::SSLError: SSL_connect SYSCALL returned=5 errno=0 state=SSLv3 read server hello AActivemerchant SSL_connect returned=1 errno=0 state=SSLv3SSL_connect SYSCALL returned=5 errno=0 state=SSLv3 read server hello A (OpenSSL::SSL::SSLError)OpenSSL::SSL::SSLError (SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed) while connecting to PaypalHow to fix (OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed) in Win7-64How to Parse uri in ruby without Authentication






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am trying to pull a binary from our repo in Artifactory that is of HTTPS.



/var/chef/cookbooks/app/providers/setup.rb:48:in `determineRepoURL'
/var/chef/cookbooks/app/providers/setup.rb:86:in `deploy_compile_time_config_application'
/var/chef/cookbooks/app/providers/setup.rb:24:in `block (2 levels) in class_from_file'
/var/chef/cookbooks/app/providers/setup.rb:20:in `block in class_from_file'
...

[2019-03-26T17:11:39-07:00] ERROR: Running exception handlers
[2019-03-26T17:11:39-07:00] ERROR: Exception handlers complete
[2019-03-26T17:11:39-07:00] FATAL: Stacktrace dumped to /var/chef/cache/chef-stacktrace.out
Chef Client failed. 5 resources updated
[2019-03-26T17:11:39-07:00] ERROR: app_setup[test] (app::default line 40) had an error: OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv3 read server hello A: tlsv1 alert protocol version


Previously I had



def determineRepoURL(*param)
url = "#repository_url/api/search/pattern?pattern=#param[0]:#name/#version/*#param[1]"
uri = URI(url)
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)
request.basic_auth "#user", "#token"
response = http.request request # Net::HTTPResponse object
result = JSON.parse(response.body)
list = result['files'].sort.reverse
return list[0]
end


after adding



 http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE


I still have the same error. However, for some reason, this only happens on Chef's 11.8.2, I tried my script with Chef's 12.6.0 and I did not encounter this SSL certificate issue, does anyone have a bypass for 11.8.2 as I do not have access to 12.6.0



Ruby version: 1.8.7



OpenSSL version: OpenSSL 1.0.1e-fips 11 Feb 2013










share|improve this question


























  • What is your question?

    – sawa
    Mar 27 at 9:15











  • @sawa sorry, my question is how to fix this issue without using Chef 12.6.0?

    – Bao Thai
    Mar 27 at 16:28

















0















I am trying to pull a binary from our repo in Artifactory that is of HTTPS.



/var/chef/cookbooks/app/providers/setup.rb:48:in `determineRepoURL'
/var/chef/cookbooks/app/providers/setup.rb:86:in `deploy_compile_time_config_application'
/var/chef/cookbooks/app/providers/setup.rb:24:in `block (2 levels) in class_from_file'
/var/chef/cookbooks/app/providers/setup.rb:20:in `block in class_from_file'
...

[2019-03-26T17:11:39-07:00] ERROR: Running exception handlers
[2019-03-26T17:11:39-07:00] ERROR: Exception handlers complete
[2019-03-26T17:11:39-07:00] FATAL: Stacktrace dumped to /var/chef/cache/chef-stacktrace.out
Chef Client failed. 5 resources updated
[2019-03-26T17:11:39-07:00] ERROR: app_setup[test] (app::default line 40) had an error: OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv3 read server hello A: tlsv1 alert protocol version


Previously I had



def determineRepoURL(*param)
url = "#repository_url/api/search/pattern?pattern=#param[0]:#name/#version/*#param[1]"
uri = URI(url)
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)
request.basic_auth "#user", "#token"
response = http.request request # Net::HTTPResponse object
result = JSON.parse(response.body)
list = result['files'].sort.reverse
return list[0]
end


after adding



 http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE


I still have the same error. However, for some reason, this only happens on Chef's 11.8.2, I tried my script with Chef's 12.6.0 and I did not encounter this SSL certificate issue, does anyone have a bypass for 11.8.2 as I do not have access to 12.6.0



Ruby version: 1.8.7



OpenSSL version: OpenSSL 1.0.1e-fips 11 Feb 2013










share|improve this question


























  • What is your question?

    – sawa
    Mar 27 at 9:15











  • @sawa sorry, my question is how to fix this issue without using Chef 12.6.0?

    – Bao Thai
    Mar 27 at 16:28













0












0








0








I am trying to pull a binary from our repo in Artifactory that is of HTTPS.



/var/chef/cookbooks/app/providers/setup.rb:48:in `determineRepoURL'
/var/chef/cookbooks/app/providers/setup.rb:86:in `deploy_compile_time_config_application'
/var/chef/cookbooks/app/providers/setup.rb:24:in `block (2 levels) in class_from_file'
/var/chef/cookbooks/app/providers/setup.rb:20:in `block in class_from_file'
...

[2019-03-26T17:11:39-07:00] ERROR: Running exception handlers
[2019-03-26T17:11:39-07:00] ERROR: Exception handlers complete
[2019-03-26T17:11:39-07:00] FATAL: Stacktrace dumped to /var/chef/cache/chef-stacktrace.out
Chef Client failed. 5 resources updated
[2019-03-26T17:11:39-07:00] ERROR: app_setup[test] (app::default line 40) had an error: OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv3 read server hello A: tlsv1 alert protocol version


Previously I had



def determineRepoURL(*param)
url = "#repository_url/api/search/pattern?pattern=#param[0]:#name/#version/*#param[1]"
uri = URI(url)
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)
request.basic_auth "#user", "#token"
response = http.request request # Net::HTTPResponse object
result = JSON.parse(response.body)
list = result['files'].sort.reverse
return list[0]
end


after adding



 http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE


I still have the same error. However, for some reason, this only happens on Chef's 11.8.2, I tried my script with Chef's 12.6.0 and I did not encounter this SSL certificate issue, does anyone have a bypass for 11.8.2 as I do not have access to 12.6.0



Ruby version: 1.8.7



OpenSSL version: OpenSSL 1.0.1e-fips 11 Feb 2013










share|improve this question
















I am trying to pull a binary from our repo in Artifactory that is of HTTPS.



/var/chef/cookbooks/app/providers/setup.rb:48:in `determineRepoURL'
/var/chef/cookbooks/app/providers/setup.rb:86:in `deploy_compile_time_config_application'
/var/chef/cookbooks/app/providers/setup.rb:24:in `block (2 levels) in class_from_file'
/var/chef/cookbooks/app/providers/setup.rb:20:in `block in class_from_file'
...

[2019-03-26T17:11:39-07:00] ERROR: Running exception handlers
[2019-03-26T17:11:39-07:00] ERROR: Exception handlers complete
[2019-03-26T17:11:39-07:00] FATAL: Stacktrace dumped to /var/chef/cache/chef-stacktrace.out
Chef Client failed. 5 resources updated
[2019-03-26T17:11:39-07:00] ERROR: app_setup[test] (app::default line 40) had an error: OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv3 read server hello A: tlsv1 alert protocol version


Previously I had



def determineRepoURL(*param)
url = "#repository_url/api/search/pattern?pattern=#param[0]:#name/#version/*#param[1]"
uri = URI(url)
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)
request.basic_auth "#user", "#token"
response = http.request request # Net::HTTPResponse object
result = JSON.parse(response.body)
list = result['files'].sort.reverse
return list[0]
end


after adding



 http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE


I still have the same error. However, for some reason, this only happens on Chef's 11.8.2, I tried my script with Chef's 12.6.0 and I did not encounter this SSL certificate issue, does anyone have a bypass for 11.8.2 as I do not have access to 12.6.0



Ruby version: 1.8.7



OpenSSL version: OpenSSL 1.0.1e-fips 11 Feb 2013







ruby chef






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 27 at 17:09







Bao Thai

















asked Mar 27 at 0:18









Bao ThaiBao Thai

14714 bronze badges




14714 bronze badges















  • What is your question?

    – sawa
    Mar 27 at 9:15











  • @sawa sorry, my question is how to fix this issue without using Chef 12.6.0?

    – Bao Thai
    Mar 27 at 16:28

















  • What is your question?

    – sawa
    Mar 27 at 9:15











  • @sawa sorry, my question is how to fix this issue without using Chef 12.6.0?

    – Bao Thai
    Mar 27 at 16:28
















What is your question?

– sawa
Mar 27 at 9:15





What is your question?

– sawa
Mar 27 at 9:15













@sawa sorry, my question is how to fix this issue without using Chef 12.6.0?

– Bao Thai
Mar 27 at 16:28





@sawa sorry, my question is how to fix this issue without using Chef 12.6.0?

– Bao Thai
Mar 27 at 16:28












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55368018%2fopensslsslsslerror-ssl-connect-returned-1-errno-0-state-sslv2-v3-read-serve%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55368018%2fopensslsslsslerror-ssl-connect-returned-1-errno-0-state-sslv2-v3-read-serve%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현