in reply to Mojolicious connection to Atlas ssl cluster fails: "Premature connection close"
> So I have one wrong scenario out of 6. The scenario with ssl=true via Mojolicious, internally managed via IO::Socket::SSL.
...> openssl s_client -servername host_atlas -connect host_atlas:1024 CONNECTED(00000006)
Did you tried connecting to failed host with IO::Socket::SSL yourself? Like:
#!/usr/bin/env perl use strict; use IO::Socket::SSL; my $cl = IO::Socket::SSL->new('host_atlas:1024') or die "error=$!, ssl_error=$SSL_ERROR";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Mojolicious connection to Atlas ssl cluster fails: "Premature connection close"
by jjmoka (Beadle) on Mar 03, 2022 at 07:57 UTC | |
by alexander_lunev (Pilgrim) on Mar 03, 2022 at 13:41 UTC | |
by jjmoka (Beadle) on Mar 03, 2022 at 16:26 UTC | |
|
Re^2: Mojolicious connection to Atlas ssl cluster fails: "Premature connection close"
by alexander_lunev (Pilgrim) on Mar 03, 2022 at 06:29 UTC |