Local Server Connection Denied Issue

Hi All.

I’ve recently updated my RP3, which is running the local Blynk server and have not been able to connect to is with my ESP8266 since. The error I get looks like this:

13:41:57.911 DEBUG- Unsecured connection attempt or not supported protocol. Channel : /10.0.0.178:49153. Reason : io.netty.handler.ssl.NotSslRecordException: not an SSL/TLS record: 02000100203536383033373266393562623433326561343665313135316139633336303061

My code has not changed but I am using a newer version of Blynk. I’ve attempted running the simplest bare-bones Blynk code I could on the ESP8266 but still get the same result:

#define BLYNK_PRINT Serial

#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = “5680372f9…151a9c3600a”;

// Your WiFi credentials.
// Set password to “” for open networks.
char ssid[] = “SSID”;
char pass[] = “PASS”;

void setup()
{
// Debug console
Serial.begin(115200);
Blynk.begin(auth, ssid, pass, IPAddress(10,0,0,21), 8442);
}

void loop()
{
Blynk.run();
// You can inject your own code or combine it with other sketches.
// Check other examples on how to communicate with Blynk. Remember
// to avoid delay() function!
}

I’ve been at it for quite awhile now and am hoping that someone here might have an idea of what I could try.

One other thing that I updated was node.js, here is what I’m running now:
pi@raspberrypi:~ $ node -v
v10.11.0
pi@raspberrypi:~ $ npm -v
6.4.1

Thanks,

-Konstantin

Local server now uses 8080 for the default device port… (and 9443 for the App)

1 Like

8442

Is not used anymore. Seems like you have also old server.properties file.

Thank you @Gunner and @Dmitriy. The issue was with the old server.proprties file I updated it and changed the port to 8080 and everything is working great now!

1 Like