When accessing local SF cluster manager at https://localhost:19080/Explorer/, Chrome (version 77.0.3865.120) fails to load it with the following message:
"
This site can鈥檛 provide a secure connection
localhost sent an invalid response.
ERR_SSL_PROTOCOL_ERROR
"
Internet Explorer and Firefox also fail with similar errors.
I should be able to access the Cluster Manager.
See summary.
This started happening recently on a pre-existing SF cluster, it used to work before.
To try and fix, I installed the latest version of SF runtime, but still hitting the same issue.
Runtime 6.5.676, SDK 3.4.676 (after installing latest one)
Win 10
1-Node local cluster
None so far.
Is your local cluster deployed secured?
Are you able to access to SFX by changing it to http instead of https? Also are you able to connect to the cluster over powershell using https aswell?
I believe it is deployed as Secure, but how do I check for sure @masnider ?
Tried changing to http, it redirects back to https @jeffj6123
I have the same issue with my Azure Service fabric local cluster and I am not able to open Manage local cluster window.
I am running into this issue with versions:
7.1.409.9590
SDK version: 4.1.409.9590
I am having the same issue, and for me it happened after migrating to .NET core 3.1. I can still access the same endpoint using HTTP (It seems that it ignores the UseHttps call). Have you tried using the HTTP:// protocol and see if this works?
I managed to make it work by enforcing using TLSv1.2:
var webHostBuilder = new WebHostBuilder().UseKestrel(opt =>
{
foreach (var endpoint in endpoints)
{
var endpointDesc = serviceContext.CodePackageActivationContext.GetEndpoint(endpoint);
opt.ConfigureHttpsDefaults(listenOptions =>
{
listenOptions.SslProtocols = SslProtocols.Tls12;
});
Though it does not work as expected on a 5 node production cluster. My HTTPS call gets through one of five times, the rest are still served as plain HTTP. This is very confusing.
Did anybody managed to fix it?
I was able to fix this in Edge chromium by deleting the "domain security policies" for localhost:
edge://net-internals/#hsts.localhost and click the Delete buttonSince this net-internals is part of Chromium, this also works with Chrome. The only difference being the URL: chrome://net-internals/#hsts.
I was struggling with this issue myself for months now. Hopefully, this helps get someone else unblocked as well.
Most helpful comment
I was able to fix this in Edge chromium by deleting the "domain security policies" for
localhost:edge://net-internals/#hsts.localhostand click the Delete buttonSince this
net-internalsis part of Chromium, this also works with Chrome. The only difference being the URL:chrome://net-internals/#hsts.I was struggling with this issue myself for months now. Hopefully, this helps get someone else unblocked as well.