Unable to Connect to remote AIO module with node red

User avatar
D.Costa
Posts: 12
Joined: 27 Apr 2020, 12:35
Answers: 0

Re: Unable to Connect to remote AIO module with node red

Post by D.Costa »

Marcos wrote: 08 Apr 2021, 14:00 Hi Dears, here I am again.
There is the same issue again.
my previous procedure doesn't work any more after the last update.

Connecting to WS Server wss://localhost:8000
ERROR Connection to server error: Client network socket disconnected before secure TLS connection was established
Lost connection to WS Server!

Update

The new server release 1.0.3 requires some new dependencies.

proceed to install
python3-bcrypt
python3-websockets

then after having downloaded new release from github (https://github.com/erminas/noderedrevpi ... r/releases)
install it with

sudo dpkg -i noderedrevpinodes-server_1.0.3_all.deb

Now it works again.
Thanks for posting the solution Marco!

To summary;

Code: Select all

wget https://github.com/erminas/noderedrevpinodes-server/releases/download/1.0.2-1/noderedrevpinodes-server_1.0.2_all.deb
Then:

Code: Select all

sudo apt install ./noderedrevpinodes-server_1.0.2_all.deb  
Install dependencies:

Code: Select all

sudo apt-get install python3-bcrypt  
sudo apt-get install python3-websockets
I have to re-install node-red and it work for me with 1.0.2 ;-)
gonevid
Posts: 2
Joined: 10 Aug 2021, 07:52
Answers: 0

Re: Unable to Connect to remote AIO module with node red

Post by gonevid »

remote connections are currently disabled in noderedrevpinodes, because https/wss support is not added yet and no user authentification is in place.
[SIZE=1] [URL=https://vidmate-apk.in/home/]vidmate[/URL] [URL=https://instasave.onl/]save insta[/URL][/SIZE]
jamalafiq
Posts: 1
Joined: 21 Aug 2022, 10:47
Answers: 0

Re: Unable to Connect to remote AIO module with node red

Post by jamalafiq »

I do not know how to install the missing server. I try to follow this but still couldnt. My issue they revpi says unsupported server. I try to follow the link https://github.com/erminas/noderedrevpinodes-server . Please help me, thank you. I need to settle this today or my boss will be mad. :shock:
Attachments
revpi.png
revpi.png (76.07 KiB) Viewed 5849 times
dfilsinger-erminas
Official 3rd Party Support Erminas
Posts: 6
Joined: 16 Mar 2022, 18:54
Answers: 1

Re: Unable to Connect to remote AIO module with node red

Post by dfilsinger-erminas »

Hello jamalafiq,

it looks like you don't have the latest version of the server installed. The nodes in version 1.0.9 require the server in version 1.0.4.
If you are not sure which version is installed, you can use this to check:

Code: Select all

apt-cache policy noderedrevpinodes-server

The easiest way to install a new version is to do an update on the RevPi before installing the server:

Code: Select all

sudo apt-get update
sudo apt-get install noderedrevpinodes-server 

Or you can do a manual installation of the Debian package from github:

Code: Select all

wget https://github.com/erminas/noderedrevpinodes-server/releases/download/1.0.4/noderedrevpinodes-server_1.0.4_all.deb
sudo apt install ./noderedrevpinodes-server_1.0.4_all.deb

Regards
Dennis from Erminas
Post Reply